
        body {
            font-family: 'Inter', system-ui, sans-serif;
            background-color: #f8fafc;
        }

        /* ===== Cartes statistiques ===== */
        .stat-card {
            background: #ffffff;
            border-radius: 16px;
            border: 2px solid #e2e8f0;
            padding: 20px 24px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #003338, #98d0d8);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
            border-color: #003338;
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .stat-icon.primary {
            background: #e8f3f4;
            color: #003338;
        }

        .stat-icon.success {
            background: #d1fae5;
            color: #059669;
        }

        .stat-icon.danger {
            background: #fee2e2;
            color: #dc2626;
        }

        .stat-icon.warning {
            background: #fef3c7;
            color: #d97706;
        }

        /* ===== Carte pays ===== */
        .pays-card {
            background: #ffffff;
            border-radius: 16px;
            border: 2px solid #e2e8f0;
            padding: 16px 20px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .pays-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.08);
            border-color: #003338;
        }

        .flag-container {
            width: 56px;
            height: 40px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #e2e8f0;
            flex-shrink: 0;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flag-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .flag-container .material-symbols-outlined {
            font-size: 28px;
            color: #94a3b8;
        }

        .pays-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 2px 10px;
            border-radius: 100px;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            background: #dee8ff;
            color: #003338;
        }

        .progress-bar-custom {
            height: 6px;
            border-radius: 100px;
            background: #e2e8f0;
            overflow: hidden;
            margin-top: 8px;
        }

        .progress-bar-custom .fill {
            height: 100%;
            border-radius: 100px;
            background: linear-gradient(90deg, #003338, #98d0d8);
            transition: width 1s ease;
        }

        /* ===== Recherche ===== */
        .input-search {
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 10px 16px 10px 64px !important;
            width: 100%;
            transition: all 0.2s ease;
            background: #ffffff;
            font-size: 0.95rem;
        }

        .input-search:focus {
            border-color: #003338;
            box-shadow: 0 0 0 4px rgba(0, 51, 56, 0.08);
            outline: none;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, #003338 0%, #064b52 100%);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px -8px rgba(0, 51, 56, 0.35);
            color: white;
        }

        .btn-outline-custom {
            background: transparent;
            border: 2px solid #e2e8f0;
            color: #40484a;
            padding: 8px 20px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .btn-outline-custom:hover {
            border-color: #003338;
            color: #003338;
            background: #e8f3f4;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(16px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-card,
        .pays-card {
            animation: fadeInUp 0.4s ease forwards;
        }

        .stat-card:nth-child(1) {
            animation-delay: 0.02s;
        }

        .stat-card:nth-child(2) {
            animation-delay: 0.06s;
        }

        .stat-card:nth-child(3) {
            animation-delay: 0.10s;
        }

        .stat-card:nth-child(4) {
            animation-delay: 0.14s;
        }

        .pays-card:nth-child(1) {
            animation-delay: 0.02s;
        }

        .pays-card:nth-child(2) {
            animation-delay: 0.06s;
        }

        .pays-card:nth-child(3) {
            animation-delay: 0.10s;
        }

        .pays-card:nth-child(4) {
            animation-delay: 0.14s;
        }

        .pays-card:nth-child(5) {
            animation-delay: 0.18s;
        }

        .pays-card:nth-child(6) {
            animation-delay: 0.22s;
        }

        .pays-card:nth-child(7) {
            animation-delay: 0.26s;
        }

        .pays-card:nth-child(8) {
            animation-delay: 0.30s;
        }

        .pays-card:nth-child(9) {
            animation-delay: 0.34s;
        }

        .pays-card:nth-child(10) {
            animation-delay: 0.38s;
        }

        .empty-state {
            text-align: center;
            padding: 40px 20px;
            background: #ffffff;
            border-radius: 16px;
            border: 2px dashed #e2e8f0;
        }
