/* ===========================
   GLOBAL BASE
=========================== */
html, body {
    height: 100%;
    margin: 0;
    background-color: #212529;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

#wrapper {
    display: flex;
    min-height: 100vh;
}

#page-content-wrapper {
    flex: 1;
    background-color: #212529;
    color: #fff;
    padding: 20px;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
    height: 60px;
    background-color: #1b1f22;
    border-bottom: 1px solid #343a40;
}

    .navbar .btn-outline-light {
        border-color: #ced4da;
        color: #f8f9fa;
    }

        .navbar .btn-outline-light:hover {
            background-color: #f8f9fa;
            color: #212529;
        }

/* ===========================
   SIDEBAR
=========================== */
#sidebar-wrapper {
    width: 250px;
    background-color: #212529;
    transition: all 0.3s ease;
    min-height: 100vh;
    overflow: hidden;
}

    #sidebar-wrapper.collapsed {
        width: 70px;
    }

/* Sidebar Heading */
.sidebar-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #343a40;
    white-space: nowrap;
    transition: all 0.3s ease;
}

    .sidebar-heading i {
        font-size: 1.3rem;
        color: #0dcaf0;
    }

#sidebar-wrapper.collapsed .sidebar-heading {
    justify-content: center;
}

/* Sidebar Links */
.list-group-item {
    border: none;
    color: #dee2e6;
    background-color: #212529;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 0.95rem;
}

    .list-group-item i {
        font-size: 1.2rem;
        min-width: 22px;
        text-align: center;
        color: #adb5bd;
    }

    .list-group-item:hover {
        background-color: #0d6efd;
        color: #fff !important;
    }

        .list-group-item:hover i {
            color: #fff;
        }

/* Collapse Mode */
#sidebar-wrapper.collapsed .sidebar-text {
    display: none !important;
}

#sidebar-wrapper.collapsed .list-group-item {
    justify-content: center;
    padding: 10px 0;
}

#sidebar-wrapper.collapsed .sidebar-heading {
    justify-content: center;
}

/* ===========================
   TABLES & CARDS (optional)
=========================== */
.table {
    font-size: 0.95rem;
    color: #fff;
}

    .table th,
    .table td {
        color: #fff;
        border-color: #444;
    }

.table-dark {
    background-color: #2b2f33;
    border-color: #444;
}

.card {
    background-color: #2b2f33 !important;
    border: 1px solid #3b4045 !important;
    border-radius: 10px;
    color: #f1f1f1 !important;
    transition: all 0.25s ease-in-out;
}

    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
    }

.card-header {
    background-color: #2b2f33 !important;
    color: #ced4da !important;
    font-weight: 500;
    border-bottom: 1px solid #3b4045 !important;
}
