﻿/* ═════════════════════════════════════════════════════════════════════════════
   NİZİP İHRACAT PERFORMANS GÖSTERGESİ (EXPORT PERFORMANCE DASHBOARD)
   ═════════════════════════════════════════════════════════════════════════════ */

.nto-export-section {
    width: 100%;
    max-width: 1240px;
    margin: 20px auto;
    padding: 0;
    box-sizing: border-box;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
}

.nto-export-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 32px 36px !important;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: box-shadow 0.25s ease;
}

.nto-export-card:hover {
    box-shadow: 0 8px 30px -4px rgba(15, 23, 42, 0.08) !important;
}

/* Header */
.nto-export-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 24px !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    padding-bottom: 16px !important;
}

.nto-export-title-group {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.nto-export-title-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    background: rgba(27, 54, 93, 0.06) !important;
    color: #1b365d !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
}

.nto-export-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #0f2744 !important;
    letter-spacing: -0.015em !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.nto-export-header-right {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.nto-export-year-select {
    padding: 6px 14px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    background: #ffffff !important;
    cursor: pointer !important;
    outline: none !important;
}

.nto-export-update {
    font-size: 13px !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

/* Metric Cards Grid */
.nto-export-metrics {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 28px !important;
}

.nto-export-metric-card {
    background: #f8fafc !important;
    border: 1px solid #eef2f6 !important;
    border-left: 4.5px solid #d97706 !important; /* Amber / Gold accent line */
    border-radius: 12px !important;
    padding: 20px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
}

.nto-export-metric-label {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    color: #64748b !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}

.nto-export-metric-val {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #0f2744 !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
}

.nto-export-metric-sub {
    font-size: 13px !important;
    line-height: 1.4 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.nto-export-badge-up {
    color: #16a34a !important;
    font-weight: 700 !important;
}

.nto-export-badge-down {
    color: #dc2626 !important;
    font-weight: 700 !important;
}

.nto-export-badge-share {
    color: #64748b !important;
    font-weight: 500 !important;
}

/* Custom Chart Legend */
.nto-export-legend {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 28px !important;
    margin-bottom: 18px !important;
    flex-wrap: wrap !important;
}

.nto-export-legend-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #334155 !important;
}

.nto-export-legend-box {
    width: 48px !important;
    height: 14px !important;
    border-radius: 3px !important;
    display: inline-block !important;
}

.nto-export-legend-box--current {
    background-color: #11263c !important; /* Deep Dark Navy */
}

.nto-export-legend-box--prev {
    background-color: #cbd5e1 !important; /* Soft Gray Blue */
}

/* Chart Canvas Wrapper */
.nto-export-chart-wrap {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    min-height: 320px !important;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .nto-export-card {
        padding: 24px 20px !important;
    }

    .nto-export-metrics {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .nto-export-title {
        font-size: 19px !important;
    }

    .nto-export-metric-val {
        font-size: 24px !important;
    }

    .nto-export-chart-wrap {
        height: 300px !important;
    }
}

@media (max-width: 640px) {
    .nto-export-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .nto-export-header-right {
        width: 100% !important;
        justify-content: space-between !important;
    }

    .nto-export-legend {
        gap: 16px !important;
        font-size: 12px !important;
    }

    .nto-export-legend-box {
        width: 32px !important;
        height: 12px !important;
    }

    .nto-export-chart-wrap {
        height: 260px !important;
    }
}
