:root {
    color-scheme: light;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    min-height: 42px;
    border-color: #cbd5e1;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #334155;
    line-height: 40px;
    padding-left: 0.75rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.select2-dropdown {
    border-color: #cbd5e1;
    border-radius: 0.5rem;
    overflow: hidden;
}

table.dataTable thead th {
    color: #475569;
    font-size: 0.75rem;
    text-transform: uppercase;
}

table.dataTable tbody td {
    color: #334155;
    font-size: 0.875rem;
}

body.sidebar-collapsed #sidebar {
    width: 5rem;
}

body.sidebar-collapsed .sidebar-label {
    display: none;
}

body.sidebar-collapsed .sidebar-link {
    justify-content: center;
}

.btn-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

