/* --- products/static/products/css/base.css --- */
:root {
    --bg-body: #f4f6f8;
    --bg-card: #ffffff;
    --text-main: #2c3e50;
    --text-muted: #7f8c8d;
    --border-color: #e1e4e8;
    --primary: #2980b9;
    --success: #27ae60;
    --danger: #c0392b;
    --warning: #f39c12;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- HEADER GLOBAL --- */
.main-header {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    /* CONFIG PC : Tout aligné à gauche */
    display: flex;
    align-items: center;
    justify-content: flex-start; 
}

/* BLOC 1: LOGO */
.mobile-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto; /* PC : Prend juste sa place */
    flex-shrink: 0;
}

.logo h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #00abc0;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap; /* EMPÊCHE LE LOGO DE SE CASSER */
}

.hamburger-btn {
    display: none; /* Caché sur PC */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #2c3e50;
    cursor: pointer;
}

/* BLOC 2: MENU */
.nav-content {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Prend tout l'espace restant */
    justify-content: space-between; /* Ecarte Gauche et Droite */
    margin-left: 40px; /* Espace après le logo */
}

.nav-left, .nav-right, .user-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.btn-agency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #2c3e50;
    color: white !important;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}
.desktop-divider {
    width: 1px; height: 20px; background-color: #ddd;
}
.logout {
    background: none; border: none; padding: 0; font-size: 1rem;
}


/* --- VERSION MOBILE (< 992px) --- */
@media (max-width: 992px) {
    .header-inner {
        flex-direction: column;
        padding: 15px;
    }
    
    /* Sur Mobile, le bloc Logo prend toute la largeur pour mettre le Burger à droite */
    .mobile-header-top {
        width: 100%; 
    }
    
    .hamburger-btn {
        display: block; /* Affiche le burger */
    }

    .nav-content {
        display: none; /* Cache le menu */
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
        border-top: 1px solid #eee;
        padding-top: 10px;
    }
    
    .nav-content.active {
        display: flex; /* Affiche quand actif */
    }

    .nav-left, .nav-right, .user-nav {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 0;
    }
    
    .nav-right {
        margin-top: 15px;
        border-top: 1px dashed #ddd;
        padding-top: 15px;
    }

    .nav-link {
        display: block; width: 100%; text-align: center; padding: 12px 0; border-bottom: 1px solid #f9f9f9;
    }
    .desktop-divider { display: none; }
    .btn-agency { width: 100%; justify-content: center; margin-bottom: 15px; }
}

/* --- RESTE DU SITE (POS, MAIN) --- */
main { padding: 30px; max-width: 1200px; margin: 0 auto; }
.pos-header { color: var(--text-muted); font-weight: 600; text-transform: uppercase; border-bottom: 2px solid var(--border-color); }
.pos-row { background-color: var(--bg-card); border: 1px solid var(--border-color); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.col-price { color: var(--success); }
.btn-sell { background-color: var(--success); color: white; border-radius: 4px; }
.btn-cancel { border: 1px solid var(--danger); color: var(--danger); background: white; }

@media (max-width: 768px) {
    .pos-header { display: none !important; }
    .pos-row { flex-wrap: wrap !important; gap: 10px !important; padding: 15px !important; }
    .col-img { order: 1; width: 50px !important; }
    .col-name { order: 2; width: calc(100% - 70px) !important; flex: none !important; }
    .col-price { order: 3; width: auto !important; margin-right: 20px; }
    .col-stock { order: 4; width: auto !important; }
    .col-action { order: 5; width: 100% !important; margin-top: 10px; }
}


/* --- BOUTON WHATSAPP ORDER --- */

.btn-whatsapp-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    
    background-color: #00abc0;
    color: #ffffff !important;
    
    width: 100%;
    padding: 12px;
    margin-top: auto;
    box-sizing: border-box;
    
    font-weight: 500;
    font-size: 1.0rem;
    text-decoration: none;
    font-family: sans-serif;
    
    border-radius: 10px;
    border: none;
    
    /* C'EST ICI LE SECRET DU CONTOUR INTÉRIEUR DÉCALÉ : */
    /* 1. On crée un cercle turquoise de 3px (inset) pour faire l'écart */
    /* 2. On ajoute un cercle blanc de 5px (inset) qui dépasse de 2px */
    box-shadow: inset 0 0 0 3px #00abc0, inset 0 0 0 5px #ffffff;
    
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-whatsapp-custom i {
    font-size: 1.8rem;
}

.btn-whatsapp-custom:hover {
    background-color: #008c9e; 
    /* Au survol, on garde l'effet de bordure mais on change la couleur de fond de l'écart */
    box-shadow: inset 0 0 0 3px #008c9e, inset 0 0 0 5px #ffffff;
    transform: translateY(-2px);
}






/* =========================================
   PAGE PRODUIT DETAIL (Added 05/02/2026)
   ========================================= */

/* Conteneur principal centré */
.detail-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Bouton Retour */
.breadcrumb-nav {
    margin-bottom: 20px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted); /* Gris défini dans base.css */
    font-weight: 600;
    transition: color 0.2s;
}

.btn-back:hover {
    color: var(--primary); /* Bleu défini dans base.css */
}

/* La carte globale du produit */
.product-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    overflow: hidden;
    
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% - 50% sur PC */
}

/* --- COLONNE GAUCHE (IMAGE) --- */
.detail-image-section {
    background-color: #fff; /* J'ai remis blanc pour que ça se fonde mieux si l'image est détourée */
    padding: 40px;
    display: flex;
    align-items: flex-start; /* CORRECTION ICI : Aligne l'image en haut */
    justify-content: center; /* Garde l'image centrée horizontalement */
    border-right: 1px solid var(--border-color);
}

.image-container img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain; /* IMPORTANT: On ne coupe jamais l'image */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); /* Légère ombre sous l'objet */
}

/* Placeholder si pas d'image */
.no-image-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: #e1e4e8;
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* --- COLONNE DROITE (INFO) --- */
.detail-info-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

/* En-tête produit */
.product-category {
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #00abc0; /* Turquoise Loovidra */
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.product-title {
    margin: 0 0 15px 0;
    font-size: 2.2rem;
    color: var(--text-main);
    line-height: 1.2;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.batch-ref {
    font-family: monospace;
    background: #f0f2f5;
    padding: 4px 8px;
    border-radius: 4px;
    color: #666;
    font-size: 0.9rem;
}

/* Statuts Stock */
.stock-status {
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.stock-status.in-stock { color: var(--success); } /* Vert */
.stock-status.out-of-stock { color: var(--danger); } /* Rouge */

/* Prix */
.product-price-block {
    margin-bottom: 25px;
}

.product-price-block .currency {
    font-size: 1.2rem;
    color: var(--text-muted);
    vertical-align: top;
    font-weight: 600;
}

.product-price-block .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
}

/* Description (CKEditor) */
.rich-text-content {
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    flex-grow: 1; /* Pousse le bouton vers le bas */
}

/* Nettoyage des styles par défaut de CKEditor */
.rich-text-content p { margin-bottom: 15px; }
.rich-text-content ul { list-style: disc; margin-left: 20px; margin-bottom: 15px; }
.rich-text-content strong { color: var(--text-main); }

/* Actions */
.product-actions {
    margin-top: auto; /* Colle en bas si la description est courte */
}

/* Note de sécurité sous le bouton */
.action-note {
    text-align: center;
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: 12px;
}

/* --- RESPONSIVE MOBILE (< 768px) --- */
@media (max-width: 768px) {
    .product-detail-card {
        grid-template-columns: 1fr; /* Une seule colonne */
    }

    .detail-image-section {
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .image-container img {
        max-height: 300px; /* Plus petit sur mobile */
    }

    .detail-info-section {
        padding: 25px;
    }

    .product-title {
        font-size: 1.8rem;
    }
}


/* --- GALERIE PHOTO PRODUIT --- */

.gallery-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Zone Principale */
.main-viewport {
    position: relative; /* Pour placer les flèches par dessus */
    display: flex;
    align-items: center; /* Centre verticalement l'image si elle est petite */
    justify-content: center;
    min-height: 300px;
}

/* Boutons Flèches */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    color: #2c3e50;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.gallery-btn:hover {
    background-color: #00abc0; /* Turquoise au survol */
    color: white;
    border-color: #00abc0;
}

.gallery-btn.prev { left: 10px; }
.gallery-btn.next { right: 10px; }

/* Miniatures */
.thumbnails-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumb-item {
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item:hover {
    opacity: 1;
}

/* Miniature Active (Celle qu'on regarde) */
.thumb-item.active {
    border-color: #00abc0; /* Bordure Turquoise */
    opacity: 1;
    transform: scale(1.05);
}


/* --- SLIDER PAGE D'ACCUEIL & TAILLE CARTE --- */

.card-img {
    position: relative;     /* Indispensable pour positionner les flèches */
    height: 220px;          /* ON FORCE LA HAUTEUR ICI */
    width: 100%;            /* Prend toute la largeur disponible */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 0px;          /* Petite marge interne pour que l'image respire */
    box-sizing: border-box; /* Pour que le padding ne casse pas la largeur */
    overflow: hidden;       /* Sécurité : coupe tout ce qui dépasse */
}

/* Le lien qui entoure l'image doit aussi prendre toute la place */
.img-link {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

/* L'IMAGE ELLE-MÊME : Règle d'or pour ne pas qu'elle explose */
.card-img img {
    max-width: 100%;        /* Ne dépasse jamais la largeur du cadre */
    max-height: 100%;       /* Ne dépasse jamais la hauteur (220px) */
    object-fit: contain;    /* MAGIQUE : Affiche l'image ENTIÈRE sans la couper */
    transition: opacity 0.15s ease-in-out;
}

/* Les contrôles (flèches) en bas de l'image */
.mini-slider-controls {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
    opacity: 0; /* Caché par défaut */
    transition: opacity 0.3s;
    z-index: 10; /* S'assure que les flèches sont au dessus de l'image */
}

/* On affiche les flèches quand on passe la souris sur la carte */
.product-card:hover .mini-slider-controls {
    opacity: 1;
}



.mini-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    color: #2c3e50;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.mini-btn:hover {
    background: #00abc0;
    color: white;
    border-color: #00abc0;
    transform: scale(1.1);
}

/* --- FORCER L'AFFICHAGE DES FLÈCHES SUR MOBILE --- */
@media (max-width: 768px) {
    .mini-slider-controls {
        opacity: 1 !important; /* Toujours visible sur mobile */
    }
}

/* =========================================
   BARRE DE FILTRES CATEGORIES 
   ========================================= */
.category-filter-bar {
    display: flex;
    gap: 8px;               /* Espace réduit entre les boutons (avant: 10px) */
    margin-bottom: 30px;
    
    /* MODIFICATION : RETOUR À LA LIGNE ACTIVÉ */
    flex-wrap: wrap;        /* C'est la commande magique pour aller à la ligne */
    justify-content: center; /* Centre le nuage de catégories au milieu */
    
    /* ON SUPPRIME LE SCROLL HORIZONTAL */
    overflow-x: visible;
    white-space: normal;
}

/* Cache la scrollbar (au cas où elle traîne encore sur certains navigateurs) */
.category-filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    display: inline-block;
    
    /* MODIFICATION : TAILLE COMPACTE */
    padding: 6px 14px;      /* Beaucoup plus fin (avant: 10px 20px) */
    font-size: 0.85rem;     /* Texte plus petit (avant: 0.95rem) */
    
    background-color: white;
    border: 1px solid #e1e4e8;
    border-radius: 50px;    /* Forme "Pilule" */
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.filter-pill:hover {
    border-color: #00abc0;
    color: #00abc0;
    transform: translateY(-1px);
}

/* État actif (la catégorie sélectionnée) */
.filter-pill.active {
    background-color: #00abc0;
    border-color: #00abc0;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 171, 192, 0.3);
}


/* =========================================
   BARRE DE RECHERCHE (Ajouté le 05/02/2026)
   ========================================= */
.search-container {
    max-width: 600px;
    margin: 0 auto 20px auto; /* Centré + Marge bas */
    padding: 0 20px;
}

.search-form {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e1e4e8;
    border-radius: 50px; /* Bord très arrondi */
    padding: 5px 5px 5px 20px; /* Padding interne */
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.search-form:focus-within {
    border-color: #00abc0; /* Turquoise quand on clique dedans */
    box-shadow: 0 4px 10px rgba(0, 171, 192, 0.15);
}

.search-input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #2c3e50;
    background: transparent;
    padding: 10px 0;
}

.search-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    margin-right: -2px; /* Colle au bord droit */
}

.search-btn:hover {
    background-color: #00abc0;
}

.clear-search {
    color: #95a5a6;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex; /* Pour centrer l'icône */
    align-items: center; 
}
.clear-search:hover {
    color: #c0392b; /* Rouge au survol */
}

/* =========================================
   PAGINATION (Ajouté le 05/02/2026)
   ========================================= */
.pagination-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
    background: white;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    border: 1px solid #eee;
    transition: all 0.2s;
}

.page-link:hover:not(.active):not(.disabled) {
    background-color: #f0f2f5;
    border-color: #d1d5db;
    color: #00abc0;
}

.page-link.active {
    background-color: #00abc0;
    color: white;
    border-color: #00abc0;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 171, 192, 0.3);
}

.page-link.disabled {
    color: #ccc;
    cursor: not-allowed;
    background-color: #f9f9f9;
    border-color: #eee;
}

/* Status Coming Soon (Orange) */
.stock-status.coming-soon {
    color: #f39c12; /* Orange vif */
}


/* =========================================
   STYLE DU HUB (Page Centrale) - Ajout V6
   ========================================= */
.hub-container {
    max_width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.hub-header {
    text-align: center;
    margin-bottom: 40px;
}

.hub-section-title {
    font-size: 1.2rem;
    color: #666;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.hub-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.hub-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.hub-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

.hub-card h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.hub-card p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
}

/* Couleurs spécifiques par fonction */
.card-pos i { color: #2ecc71; } /* Vert pour la vente */
.card-compta i { color: #e74c3c; } /* Rouge pour les dépenses */
.card-admin i { color: #34495e; } /* Sombre pour l'admin */



/* =========================================
   PAGE HISTORIQUE DES VENTES (Style V6)
   ========================================= */

.history-container {
    max_width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding-bottom: 40px;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 2px solid #f4f6f8;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.history-header h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #2c3e50;
}

.history-header h1 i {
    color: #3498db;
    margin-right: 10px;
}

/* Bouton Retour */
.btn-back {
    display: inline-block;
    color: #7f8c8d;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    align-self: flex-start;
}
.btn-back:hover {
    color: #3498db;
    text-decoration: underline;
}

/* Barre de recherche */
.search-box form {
    display: flex;
    gap: 10px;
}

.search-box input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    width: 250px;
    outline: none;
    transition: border 0.3s;
}

.search-box input:focus {
    border-color: #3498db;
}

.search-box button {
    background: #3498db;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.search-box button:hover {
    background: #2980b9;
}

/* Tableau */
.table-responsive {
    overflow-x: auto;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.history-table th {
    background-color: #f8f9fa;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
}

.history-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
    vertical-align: middle;
}

.history-table tr:hover {
    background-color: #fcfcfc;
}

/* Styles Cellules */
.date-cell .date {
    display: block;
    font-weight: 600;
    color: #2c3e50;
}
.date-cell .time {
    display: block;
    font-size: 0.85rem;
    color: #95a5a6;
}

.seller-badge {
    background: #ecf0f1;
    color: #7f8c8d;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.qty-badge {
    background: #3498db;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
}

.price-total {
    color: #27ae60;
}

/* Utilitaires */
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-muted { color: #95a5a6; font-size: 0.85rem; }
.font-weight-bold { font-weight: 700; }

.empty-state {
    text-align: center;
    padding: 50px;
    color: #bdc3c7;
}
.empty-state i {
    font-size: 3rem;
    margin-bottom: 10px;
}