/* =====================================================
   DESIGN FPC TAXES PUBLICITAIRES - KINSHASA 2026
   ===================================================== 
*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400&display=swap');


body {
  font-family: 'Oswald', sans-serif !important;; 
}
/* Sidebar */
#sidebar {
    min-height: calc(100vh - 76px);
    border-right: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.sidebar-link {
    border-radius: 10px;
    margin: 2px 8px;
    padding: 12px 16px !important;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sidebar-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    transform: translateX(5px);
    border-color: rgba(255,255,255,0.2);
}

.sidebar-link.active {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(240,147,251,0.4);
}

.sidebar-text {
    font-weight: 500;
}

/* Cards Dashboard */
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0 !important;
}

/* Boutons FPC */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}

/* Tableaux */
.table {
    border-radius: 10px;
    overflow: hidden;
}

.table th {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    font-weight: 600;
    border: none;
}

/* Modal */

.modal {
    overflow-y: auto;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Pour Select2 */
.js-example-basic-single {
    z-index: 9999 !important;
}

/* Responsive Sidebar */
@media (max-width: 991px) {
    #sidebar {
        position: fixed;
        top: 76px;
        left: -280px;
        width: 280px;
        height: calc(100vh - 76px);
        z-index: 1040;
        overflow-y: auto;
    }
    
    #sidebar.show {
        left: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out;
}

/* Badge notifications */
.badge {
    font-size: 0.7em;
    min-width: 20px;
    height: 20px;
}
