@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* GLOBAL MODERN RESET */
body {
    background-color: #f1f4f9 !important;
    padding-top: 70px !important;
    font-family: 'Inter', sans-serif !important;
    color: #333;
    overflow-x: hidden;
}

/* MODERNIZE SIDEBAR - LIGHT THEME FORCED */
.sidebar {
    background-color: #ffffff !important;
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 80px;
    z-index: 1000;
    border-right: 1px solid #eef2f7;
    transition: all 0.3s;
    box-shadow: 2px 0 10px rgba(0,0,0,0.02);
}

.sidebar .nav-item { border: none !important; }

.sidebar .nav-link {
    color: #555555 !important;
    padding: 12px 25px !important;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    text-decoration: none !important;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active-link, .sidebar .nav-link.active {
    color: #30a5ff !important;
    background-color: #f8fbff !important;
    border-left: 4px solid #30a5ff;
}

.sidebar .nav-link i, .sidebar .nav-link em {
    width: 30px;
    font-size: 1.1rem;
    color: #adb5bd !important;
}

.sidebar .nav-link:hover i, .sidebar .nav-link.active-link i {
    color: #30a5ff !important;
}

/* MAIN CONTENT ADJUSTMENT */
.main {
    margin-left: 250px;
    padding: 30px;
    min-height: calc(100vh - 70px);
}

@media (max-width: 768px) {
    .sidebar { left: -250px; }
    .sidebar.show { left: 0; }
    .main { margin-left: 0; padding: 15px; }
}

/* CARD & PANELS MODERNIZATION */
.card, .panel {
    border: none !important;
    border-radius: 1rem !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    margin-bottom: 25px;
    background: #fff;
    overflow: hidden;
}

.card-header, .panel-heading {
    background-color: #fff !important;
    border-bottom: 1px solid #f1f4f9 !important;
    padding: 15px 25px !important;
    font-weight: 700 !important;
    color: #30a5ff !important;
}

/* TABLES STYLING */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6 !important;
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px;
}

.table tbody td {
    padding: 15px !important;
    border-bottom: 1px solid #f1f4f9 !important;
    vertical-align: middle !important;
}

/* BREADCRUMB */
.breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
}

.breadcrumb-item a {
    color: #30a5ff;
    text-decoration: none;
}

/* UTILITIES */
.text-primary { color: #30a5ff !important; }
.bg-primary { background-color: #30a5ff !important; }
.rounded-pill { border-radius: 50rem !important; }

/* FIX FOR COLLAPSE SIDEBAR */
#sidebar-collapse.collapse:not(.show) {
    display: block;
}
@media (max-width: 768px) {
    #sidebar-collapse.collapse:not(.show) {
        display: none;
    }
}
