/* Sidebar Styles */
#wrapper {
    overflow-x: hidden;
}

#sidebar-wrapper {
    min-height: 100vh;
    margin-left: -15rem;
    transition: margin 0.25s ease-out;
    width: 250px;
}

#sidebar-wrapper .list-group {
    width: 250px;
}

#page-content-wrapper {
    min-width: 100vw;
}

body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
    margin-left: 0;
}

@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0;
    }

    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }

    body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
        margin-left: -15rem;
    }
}

/* Card Styles */
.border-left-primary {
    border-left: 4px solid #4e73df !important;
}

.border-left-success {
    border-left: 4px solid #1cc88a !important;
}

.border-left-info {
    border-left: 4px solid #36b9cc !important;
}

.border-left-warning {
    border-left: 4px solid #f6c23e !important;
}

/* Text Styles */
.text-xs {
    font-size: 0.7rem;
}

/* Hover Effects */
.list-group-item-action:hover {
    background-color: #f8f9fc;
    transform: translateX(5px);
    transition: transform 0.2s;
}

/* Table Styles */
.table thead th {
    border-bottom-width: 1px;
    font-weight: 600;
    color: #4e73df;
}

/* Status Badges */
.badge-success {
    background-color: #1cc88a;
    color: white;
}

.badge-warning {
    background-color: #f6c23e;
    color: white;
}

.badge-danger {
    background-color: #e74a3b;
    color: white;
}

.badge-info {
    background-color: #36b9cc;
    color: white;
}