

    /* Design System Variables */
    :root {
        --primary: #3f51b5;
        --primary-light: #757de8;
        --primary-dark: #002984;
        --secondary: #ff6d00;
        --secondary-light: #ff9e40;
        --secondary-dark: #c43c00;
        --success: #4caf50;
        --info: #2196f3;
        --warning: #ff9800;
        --danger: #f44336;
        --light: #f5f5f5;
        --dark: #212121;
        --gray: #757575;
        --gray-light: #e0e0e0;

        --card-radius: 12px;
        --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        --card-hover-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        --transition-speed: 0.3s;
        --mobile-breakpoint: 768px;
    }

     :root {
        --primary-color: #2c3e50;
        --secondary-color: #3498db;
        --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        --card-hover-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        --border-radius: 10px;
    }
    
    /* Base Styles */
    .indicator-page {
        color: #333;
        line-height: 1.6;
    }

    /* Header Styles */
    .indicator-header {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }

    .indicator-title {
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 0.75rem;
    }

    .indicator-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
        margin-bottom: 1.25rem;
    }

    .indicator-description {
        font-size: 1.1rem;
        color: var(--gray);
        max-width: 800px;
    }

    /* Card Styles */
    .data-card {
        transition: all var(--transition-speed) ease;
        border-radius: var(--card-radius);
        box-shadow: var(--card-shadow);
        height: 100%;
        border: none;
        border-top: 4px solid;
        overflow: hidden;
    }

    .data-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--card-hover-shadow);
    }

    .data-card .card-body {
        padding: 1.5rem;
    }

    .data-card-primary {
        border-top-color: var(--primary);
    }

    .data-card-success {
        border-top-color: var(--success);
    }

    .data-card-warning {
        border-top-color: var(--warning);
    }

    /* Value Display */
    .indicator-value {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.2;
        margin: 0.5rem 0;
    }

    .indicator-unit {
        font-size: 0.9rem;
        color: var(--gray);
    }

    /* Trend Indicators */
    .trend-indicator {
        display: inline-flex;
        align-items: center;
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
        border-radius: 20px;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .trend-up {
        color: var(--success);
    }

    .trend-down {
        color: var(--danger);
    }

    .trend-neutral {
        color: var(--gray);
    }

    /* Country Flag */
    .country-flag {
        width: 24px;
        height: 18px;
        object-fit: cover;
        border-radius: 2px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        margin-right: 0.5rem;
    }

    /* Chart Containers */
    .chart-container {
        position: relative;
        height: 350px;
        width: 100%;
        background: white;
    }

    .chart-loading {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        background: rgba(255, 255, 255, 0.9);
    }

    /* Map Legend */
    .legend-container {
        padding: 1rem;
        background: white;
        border-radius: var(--card-radius);
    }

    .legend-gradient {
        height: 16px;
        width: 100%;
        border-radius: 4px;
        margin-bottom: 0.5rem;
        background: linear-gradient(to right, #d4f4dd, #a80000);
    }

    .legend-labels {
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        color: var(--gray);
    }

   

    /* Related Content */
    .related-item {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.2s ease;
    }

    .related-item:hover {
        background-color: rgba(0, 0, 0, 0.02);
    }

    .related-item:last-child {
        border-bottom: none;
    }



    /* Responsive Adjustments */
    @media (max-width: 767.98px) {
        .indicator-value {
            font-size: 1.75rem;
        }

        .chart-container {
            height: 280px;
        }

        .data-card .card-body {
            padding: 1.25rem;
        }
    }

    /* Animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-in {
        animation: fadeIn 0.5s ease forwards;
    }

    .delay-1 {
        animation-delay: 0.1s;
    }

    .delay-2 {
        animation-delay: 0.2s;
    }

    .delay-3 {
        animation-delay: 0.3s;
    }

 
 
 /* Card Headers */
    .card-header {
        background: white;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .card-header h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .card-header .icon {
        margin-right: 0.75rem;
        color: var(--primary);
    }



   
    .section-title {
        position: relative;
        padding-bottom: 0.75rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

    .section-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 4px;
        background: var(--secondary-color);
        border-radius: 2px;
    }

    .section-title i {
        margin-right: 10px;
        width: 24px;
        text-align: center;
        color: var(--primary-color);
    }

    .content-card {
        transition: all 0.3s ease;
        border: none;
        border-radius: var(--border-radius);
        overflow: hidden;
        background-color: #fff;
        box-shadow: var(--card-shadow);
    }

    .content-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--card-hover-shadow);
    }

    .card-header {
        background: white;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 1.25rem;
    }

    .card-body {
        padding: 1rem;
    }

    .card-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--primary-color);
        text-decoration: none;
        transition: color 0.2s ease, transform 0.2s ease;
    }

    .card-link:hover {
        color: var(--primary-color-dark, #0056b3);
        transform: translateX(3px);
    }

    .card-link i {
        font-size: 0.8rem;
        transition: transform 0.2s ease;
    }

    .card-link:hover i {
        transform: translateX(2px);
    }


.responsive-container{
    display: grid;
    gap: 1rem;
}

/* Full width layout (col-12) */
.responsive-container{
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Narrow container (col-4) override */
.col-4 .responsive-container,
.col-md-4 .responsive-container,
.col-lg-4 .responsive-container{
    grid-template-columns: 1fr;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .responsive-container{
        grid-template-columns: 1fr;
    }
}
