/* AdminLTE Custom Theme Styles */
:root {
    --theme-primary-color: #007bff;
    --theme-bg-color: #f4f6f9;
}

/* Glassmorphism Cards */
.card {
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Gradient Widgets */
.bg-gradient-primary { background: linear-gradient(135deg, #4e73df 0%, #224abe 100%) !important; }
.bg-gradient-success { background: linear-gradient(135deg, #1cc88a 0%, #13855c 100%) !important; }
.bg-gradient-warning { background: linear-gradient(135deg, #f6c23e 0%, #dda20a 100%) !important; }
.bg-gradient-info    { background: linear-gradient(135deg, #36b9cc 0%, #258391 100%) !important; }

/* Focus Effects */
.form-control:focus, .select2-container--bootstrap4 .select2-selection--single:focus {
    border-color: #4e73df !important;
    box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.25) !important;
}