/* ========================================
   VARIABLES GLOBALES - PALETTE MODERNE
   ======================================== */
:root {
    /* Couleurs principales */
    --primary: #0F62FE;
    --primary-hover: #0353E9;
    --primary-light: #D0E2FF;
    --primary-dark: #002D9C;

    /* Couleurs secondaires */
    --secondary: #4B5563;
    --secondary-hover: #374151;
    --secondary-light: #F3F4F6;

    /* Couleurs sémantiques */
    --success: #10B981;
    --success-light: #D1FAE5;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --error: #EF4444;
    --error-light: #FEE2E2;
    --info: #3B82F6;
    --info-light: #DBEAFE;

    /* Surfaces et backgrounds */
    --bg-primary: #F8FAFC;
    --bg-secondary: #F1F5F9;
    --surface: #FFFFFF;
    --surface-hover: #F9FAFB;

    /* Texte */
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-tertiary: #9CA3AF;
    --text-inverse: #FFFFFF;

    /* Bordures */
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;
    --border-dark: #9CA3AF;

    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Rayons de bordure */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Typographie */
    --font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

/* Import de la police Inter (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   NOTIFICATION BADGE - Design Moderne
   ======================================== */
.notification-container {
    position: relative;
    display: inline-block;
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* ========================================
   IMAGE PLACEHOLDER - Style Amélioré
   ======================================== */
.image-input-placeholder {
    background-image: url('../media/svg/files/blank-image.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity var(--transition-base);
}

.image-input-placeholder:hover {
    opacity: 0.8;
}

[data-bs-theme="dark"] .image-input-placeholder {
    background-image: url('../media/svg/files/blank-image-dark.svg');
}

/* ========================================
   UTILITAIRES GLOBAUX
   ======================================== */
.hide {
    display: none !important;
}

#kt_mouvements_table_processing {
    display: none !important;
}

/* ========================================
   VARIABLES GLOBALES - PALETTE MODERNE
   ======================================== */
   :root {
    /* Couleurs principales */
    --primary: #0F62FE;
    --primary-hover: #0353E9;
    --primary-light: #D0E2FF;
    --primary-dark: #002D9C;

    /* Couleurs secondaires */
    --secondary: #4B5563;
    --secondary-hover: #374151;
    --secondary-light: #F3F4F6;

    /* Couleurs sémantiques */
    --success: #10B981;
    --success-light: #D1FAE5;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --error: #EF4444;
    --error-light: #FEE2E2;
    --info: #3B82F6;
    --info-light: #DBEAFE;

    /* Surfaces et backgrounds */
    --bg-primary: #F8FAFC;
    --bg-secondary: #F1F5F9;
    --surface: #FFFFFF;
    --surface-hover: #F9FAFB;

    /* Texte */
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-tertiary: #9CA3AF;
    --text-inverse: #FFFFFF;

    /* Bordures */
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;
    --border-dark: #9CA3AF;

    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Rayons de bordure */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Typographie */
    --font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

/* Import de la police Inter (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   NOTIFICATION BADGE - Design Moderne
   ======================================== */
.notification-container {
    position: relative;
    display: inline-block;
}

.notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, var(--error) 0%, #DC2626 100%);
    color: var(--text-inverse);
    border-radius: var(--radius-full);
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-family);
    text-align: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    border: 2px solid var(--surface);
    animation: pulse-badge 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* ========================================
   IMAGE PLACEHOLDER - Style Amélioré
   ======================================== */
.image-input-placeholder {
    background-image: url('../media/svg/files/blank-image.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity var(--transition-base);
}

.image-input-placeholder:hover {
    opacity: 0.8;
}

[data-bs-theme="dark"] .image-input-placeholder {
    background-image: url('../media/svg/files/blank-image-dark.svg');
}

/* ========================================
   UTILITAIRES GLOBAUX
   ======================================== */
.hide {
    display: none !important;
}

#kt_mouvements_table_processing {
    display: none !important;
}

/* ========================================
   USER PROFILE DROPDOWN - Design Moderne
   ======================================== */
#kt_header_user_menu_toggle .menu-sub-dropdown {
    background: var(--surface) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-xl) !important;
    padding: 1rem 0 !important;
    min-width: 280px !important;
    z-index: 1000 !important;
    margin-top: 10px !important;
}

/* En-tête du profil */
#kt_header_user_menu_toggle .menu-content {
    padding: 0.75rem 1rem !important;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%) !important;
    border-radius: var(--radius-md) !important;
    margin: 0 0.75rem 0.5rem 0.75rem !important;
}

#kt_header_user_menu_toggle .menu-content .symbol {
    border: 3px solid var(--primary-light) !important;
    border-radius: var(--radius-full) !important;
    overflow: hidden;
}

#kt_header_user_menu_toggle .menu-content .symbol img {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover !important;
}

/* Nom et badge de l'utilisateur */
#kt_header_user_menu_toggle .menu-content .fw-bold.fs-5 {
    color: var(--text-primary) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

#kt_header_user_menu_toggle .menu-content .badge {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: var(--radius-sm) !important;
    text-transform: capitalize !important;
}

/* Email de l'utilisateur */
#kt_header_user_menu_toggle .menu-content a.text-muted {
    color: var(--text-secondary) !important;
    font-size: 0.8rem !important;
    margin-top: 0.25rem !important;
    display: block !important;
    max-width: 180px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* Séparateurs */
#kt_header_user_menu_toggle .separator {
    margin: 0.75rem 1rem !important;
    border-color: var(--border-light) !important;
    opacity: 0.8 !important;
}

/* Items du menu */
#kt_header_user_menu_toggle .menu-item {
    margin: 0.125rem 0.5rem !important;
}

#kt_header_user_menu_toggle .menu-item .menu-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.625rem 1rem !important;
    border-radius: var(--radius-md) !important;
    color: var(--text-primary) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    transition: all var(--transition-fast) !important;
    background: transparent !important;
}

#kt_header_user_menu_toggle .menu-item .menu-link:hover {
    background: var(--primary-light) !important;
    color: var(--primary) !important;
    transform: translateX(4px);
}

#kt_header_user_menu_toggle .menu-item .menu-link .menu-text {
    color: inherit !important;
}

#kt_header_user_menu_toggle .menu-item .menu-link .menu-badge .badge {
    background: var(--error-light) !important;
    color: var(--error) !important;
    font-weight: 600 !important;
}

/* Lien de déconnexion - style spécial */
#kt_header_user_menu_toggle .menu-item:last-child .menu-link {
    color: var(--error) !important;
}

#kt_header_user_menu_toggle .menu-item:last-child .menu-link:hover {
    background: var(--error-light) !important;
    color: var(--error) !important;
}

/* ========================================
   NOTIFICATIONS DROPDOWN - Design Moderne
   ======================================== */
.app-navbar .menu-sub-dropdown {
    z-index: 1000 !important;
    margin-top: 10px !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-xl) !important;
    border: 1px solid var(--border-light) !important;
    overflow: hidden;
    background: var(--surface) !important;
}

/* ========================================
   DATATABLE ACTION BUTTONS - Design Lisible
   ======================================== */

/* Bouton Actions dans les datatables */
.btn.btn-sm.btn-light.btn-active-light-primary,
.btn.btn-light.menu-dropdown,
.btn.btn-sm.btn-light.btn-flex.btn-center.btn-active-light-primary {
    background: var(--surface) !important;
    border: 2px solid var(--border-medium) !important;
    border-radius: var(--radius-md) !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    padding: 0.5rem 1rem !important;
    transition: all var(--transition-fast) !important;
    box-shadow: var(--shadow-sm) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.btn.btn-sm.btn-light.btn-active-light-primary:hover,
.btn.btn-light.menu-dropdown:hover,
.btn.btn-sm.btn-light.btn-flex.btn-center.btn-active-light-primary:hover {
    background: var(--primary-light) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    box-shadow: var(--shadow-md) !important;
}

.btn.btn-sm.btn-light.btn-active-light-primary.show,
.btn.btn-light.menu-dropdown.show,
.btn.btn-sm.btn-light.btn-flex.btn-center.btn-active-light-primary.show {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--text-inverse) !important;
    box-shadow: 0 0 0 4px rgba(15, 98, 254, 0.2) !important;
}

/* Icône dans le bouton */
.btn.btn-sm.btn-light.btn-active-light-primary .svg-icon,
.btn.btn-light.menu-dropdown .svg-icon {
    width: 18px !important;
    height: 18px !important;
    color: inherit !important;
}

/* ========================================
   DATATABLE DROPDOWN MENU - Design Lisible
   ======================================== */

/* Container du menu dropdown des datatables */
.menu.menu-sub.menu-sub-dropdown {
    background: var(--surface) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-xl) !important;
    padding: 0.5rem !important;
    min-width: 200px !important;
    z-index: 1050 !important;
    overflow: hidden;
    margin-top: 10px !important;
}

/* Animation d'entrée - fade simple sans translation */
.menu.menu-sub.menu-sub-dropdown.show {
    animation: dropdownFadeIn 0.15s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Items du menu dropdown */
.menu.menu-sub.menu-sub-dropdown .menu-item {
    margin: 0.2rem 0 !important;
}

.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.75rem 1rem !important;
    border-radius: var(--radius-md) !important;
    color: var(--text-primary) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    transition: all var(--transition-fast) !important;
    background: transparent !important;
    text-decoration: none !important;
}

.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link:hover {
    background: var(--primary-light) !important;
    color: var(--primary) !important;
    transform: translateX(4px);
}

.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link.active {
    background: var(--primary) !important;
    color: var(--text-inverse) !important;
}

/* Icônes dans le menu */
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link .menu-icon,
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link .svg-icon {
    width: 20px !important;
    height: 20px !important;
    color: inherit !important;
    opacity: 0.8;
    flex-shrink: 0;
}

.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link:hover .menu-icon,
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link:hover .svg-icon {
    opacity: 1;
}

/* Titre du menu */
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link .menu-title {
    flex: 1;
    color: inherit !important;
}

/* Séparateur dans dropdown */
.menu.menu-sub.menu-sub-dropdown .separator {
    margin: 0.5rem 0 !important;
    border-color: var(--border-light) !important;
}

/* ========================================
   ACTIONS SPÉCIFIQUES (Voir, Éditer, Supprimer)
   ======================================== */

/* Action Voir / View */
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="view"],
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="details"],
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="show"] {
    color: var(--text-secondary) !important;
}

.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="view"]:hover,
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="details"]:hover,
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="show"]:hover {
    background: var(--secondary-light) !important;
    color: var(--secondary-hover) !important;
}

/* Action Éditer / Edit */
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="edit"],
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="modifier"],
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[data-action="edit"] {
    color: var(--info) !important;
}

.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="edit"]:hover,
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="modifier"]:hover,
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[data-action="edit"]:hover {
    background: var(--info-light) !important;
    color: var(--info) !important;
}

/* Action Supprimer / Delete */
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="delete"],
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="supprimer"],
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[data-action="delete"],
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link.text-danger {
    color: var(--error) !important;
}

.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="delete"]:hover,
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="supprimer"]:hover,
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[data-action="delete"]:hover,
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link.text-danger:hover {
    background: var(--error-light) !important;
    color: var(--error) !important;
}

/* Action Succès / Valider */
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="valider"],
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="approve"],
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link.text-success {
    color: var(--success) !important;
}

.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="valider"]:hover,
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link[href*="approve"]:hover,
.menu.menu-sub.menu-sub-dropdown .menu-item .menu-link.text-success:hover {
    background: var(--success-light) !important;
    color: var(--success) !important;
}

/* ========================================
   RESPONSIVE DATATABLES DROPDOWN
   ======================================== */
@media (max-width: 767px) {
    .btn.btn-sm.btn-light.btn-active-light-primary,
    .btn.btn-sm.btn-light.btn-flex.btn-center.btn-active-light-primary {
        padding: 0.4rem 0.75rem !important;
        font-size: 0.8rem !important;
    }

    .menu.menu-sub.menu-sub-dropdown {
        min-width: 180px !important;
        max-width: calc(100vw - 2rem) !important;
    }

    .menu.menu-sub.menu-sub-dropdown .menu-item .menu-link {
        padding: 0.65rem 0.875rem !important;
        font-size: 0.85rem !important;
    }

    #kt_header_user_menu_toggle .menu-sub-dropdown {
        min-width: 260px !important;
        max-width: calc(100vw - 1rem) !important;
    }
}

/* ========================================
   POPOVER FONCTIONNALITÉ VERROUILLÉE
   ======================================== */
.popover-locked-feature {
    max-width: 350px !important;
    border: none !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}

.popover-locked-feature .popover-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    border-bottom: none !important;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    padding: 0.75rem 1rem !important;
}

.popover-locked-feature .popover-body {
    padding: 1rem !important;
    font-size: 0.875rem !important;
    color: var(--text-primary) !important;
    line-height: 1.5 !important;
}

.popover-locked-feature .popover-body p {
    margin-bottom: 0.5rem !important;
}

.popover-locked-feature .popover-body strong {
    color: var(--text-primary) !important;
}

.popover-locked-feature .popover-body .text-primary {
    color: var(--primary) !important;
    font-weight: 500 !important;
}

.popover-locked-feature .popover-arrow::before {
    border-bottom-color: #f59e0b !important;
}

.popover-locked-feature .popover-arrow::after {
    border-bottom-color: #f59e0b !important;
}

/* ============================================
   DATATABLE LOADING ANIMATION
   ============================================ */

/* Animation de rotation pour les icônes SVG */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Style du tableau pendant le chargement */
table.loading-data {
    position: relative;
    pointer-events: none;
}

table.loading-data::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    z-index: 10;
    animation: pulse-loading 1.5s ease-in-out infinite;
}

table.loading-data tbody {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

@keyframes pulse-loading {
    0%, 100% {
        background: rgba(255, 255, 255, 0.5);
    }
    50% {
        background: rgba(255, 255, 255, 0.8);
    }
}

/* Skeleton loader pour les lignes de tableau */
.skeleton-row td {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Style du loader SweetAlert personnalisé */
.swal2-popup.rounded-3 {
    border-radius: 16px !important;
}

.swal2-popup .progress {
    background-color: #e9ecef;
    overflow: hidden;
}

.swal2-popup .progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite,
               progress-bar-glow 2s ease-in-out infinite;
}

@keyframes progress-bar-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    }
}

/* ============================================
   MOVEMENT DETAILS MODAL
   ============================================ */

.movement-details-popup {
    border-radius: 20px !important;
    padding: 0 !important;
    overflow: hidden;
}

.movement-details-popup .swal2-title {
    padding: 1.75rem 2rem 0.5rem 2rem !important;
    margin: 0 !important;
}

.movement-details-popup .swal2-html-container {
    padding: 0 2rem 1rem 2rem !important;
    margin: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}

.movement-details-popup .swal2-actions {
    padding: 1rem 2rem 1.75rem 2rem !important;
    margin: 0 !important;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.movement-details-popup .swal2-confirm {
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.movement-details-popup .swal2-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Animation d'entrée pour les éléments du modal */
.movement-details-container {
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.active-activity {
    border-bottom: 2px solid #6366f1 !important;
    border-radius: 0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.active-activity .svg-icon {
    color: #6366f1 !important;
}

.active-activity:hover {
    transform: translateY(-2px) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
