/* assets/css/style.css */
body {
    background-color: #f8f9fa;
    overflow-x: hidden;
}

#wrapper {
    display: flex;
    min-height: 100vh;
}

#sidebar-wrapper {
    min-height: 100vh;
    width: 250px;
    margin-left: -250px;
    transition: margin 0.25s ease-out;
    background-color: #343a40 !important;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
}

@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0;
    }
    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }
    #wrapper.toggled #sidebar-wrapper {
        margin-left: -250px;
    }
}

.sidebar-heading {
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.list-group-item-action {
    color: rgba(255,255,255,0.8) !important;
    border: none;
    border-left: 3px solid transparent;
}

.list-group-item-action:hover {
    background-color: #495057 !important;
    color: #fff !important;
}

.list-group-item-action.active {
    background-color: #0d6efd !important;
    color: #fff !important;
    border-left: 3px solid #fff;
}

/* Dashboard Cards */
.border-left-primary { border-left: 4px solid #0d6efd !important; }
.border-left-success { border-left: 4px solid #198754 !important; }
.border-left-info { border-left: 4px solid #0dcaf0 !important; }
.border-left-warning { border-left: 4px solid #ffc107 !important; }

.card-shadow {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
}