body {
    background-color: #f8f9fc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Sidebar Responsive Logic */
#sidebar-wrapper {
    min-height: 100vh;
    width: 250px;
    transition: margin 0.25s ease-out;
    background: #fff;
}

#page-content-wrapper {
    min-width: 100vw;
    width: 100%;
}

/* Sidebar Toggle for Desktop/Mobile */
#wrapper.toggled #sidebar-wrapper {
    margin-left: -250px;
}

@media (min-width: 768px) {
    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }
}

/* For Mobile only (Overlay Effect) */
@media (max-width: 768px) {
    #sidebar-wrapper {
        margin-left: -250px;
        position: fixed;
        z-index: 1000;
    }
    #wrapper.toggled #sidebar-wrapper {
        margin-left: 0;
    }
}

.sidebar-heading {
    padding: 20px;
}

.list-group-item {
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    color: #6c757d;
}

.active-link {
    background-color: #eef2ff !important;
    color: #4e73df !important;
    border-radius: 8px;
    margin: 0 10px;
}

/* Search Bar */
.search-bar { width: 350px; }
.search-bar input { background-color: #f8f9fc; border: 1px solid #e3e6f0; }

/* Stat Cards */
.stat-card { border-radius: 12px; }
.icon-box {
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; color: white; font-size: 1.2rem;
}

.bg-blue { background-color: #4e73df; }
.bg-green { background-color: #1cc88a; }
.bg-orange { background-color: #f6c23e; }
.bg-purple { background-color: #9b51e0; }

.help-card {
    position: absolute;
    bottom: 20px;
    width: 210px;
}

.cursor-pointer { cursor: pointer; }