/**
 * Glassmorphism Theme for TaskMagnet
 * Transparent glass-type design without errors
 */

/* ===== GLASSMORPHISM BASE STYLES ===== */
:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-light: rgba(255, 255, 255, 0.15);
    --glass-bg-dark: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --glass-blur: blur(10px);
    --glass-radius: 20px;
    --primary-gradient: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(99, 102, 241, 0.8));
    --success-gradient: linear-gradient(135deg, rgba(0, 150, 136, 0.8), rgba(0, 184, 148, 0.8));
    --danger-gradient: linear-gradient(135deg, rgba(231, 81, 90, 0.8), rgba(229, 62, 62, 0.8));
    --warning-gradient: linear-gradient(135deg, rgba(226, 160, 63, 0.8), rgba(245, 124, 0, 0.8));
}

/* Background gradient for entire app */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* ===== GLASS CARD COMPONENTS ===== */
.widget,
.card,
.white_card {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--glass-radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.widget:hover,
.card:hover,
.white_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Card header and body adjustments */
.card-header {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.card-body {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.card-title {
    color: white !important;
    font-weight: 600;
}

/* ===== DASHBOARD CARDS ===== */
.main_content_iner {
    padding: 20px;
    background: transparent;
}

/* .white_card .white_card_body {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
} */

/* Enhanced card shadow for better depth */
.card.shadow,
.widget.shadow {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

/* ===== STATISTICS CARDS ===== */
.stat-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 100%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.stat-icon {
    background: var(--primary-gradient);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* ===== NAVIGATION ===== */
.main_menu_header {
    background: rgba(14, 23, 38, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar {
    background: rgba(14, 23, 38, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu_section {
    background: transparent !important;
}

.menu_section li a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
}

.menu_section li a:hover,
.menu_section li.active a {
    background: var(--primary-gradient);
    color: white !important;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* ===== HEADER ===== */
.main_header {
    background: rgba(14, 23, 38, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header_right {
    background: transparent;
}

.profile_info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
}

/* ===== BUTTONS ===== */
.btn_theme,
.btn-primary,
.btn-success,
.btn-danger,
.btn-warning {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn_theme {
    background: var(--primary-gradient);
    color: white;
}

.btn_theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
}

.btn-success {
    background: var(--success-gradient);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 150, 136, 0.5);
}

.btn-danger {
    background: var(--danger-gradient);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 81, 90, 0.5);
}

.btn-warning {
    background: var(--warning-gradient);
    color: white;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 160, 63, 0.5);
}

/* ===== TABLES ===== */
.table {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.table > thead > tr > th {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(99, 102, 241, 0.3));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px;
}

.table > tbody > tr > td {
    background: rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px;
    transition: all 0.2s ease;
}

.table > tbody > tr:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    transform: scale(1.005);
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    border-left: 3px solid rgba(139, 92, 246, 0.6);
}

.table-striped tbody tr:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.06) !important;
}

.table-striped tbody tr:nth-of-type(even) {
    background: rgba(255, 255, 255, 0.03) !important;
}

.table-bordered {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.table-bordered td, .table-bordered th {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Force table backgrounds to stay transparent - CRITICAL FIX */
.dataTables_wrapper .dataTables_scrollBody table.dataTable tbody tr td,
.dataTables_wrapper .dataTables_scrollHead table.dataTable thead tr th,
.dataTables_wrapper table.dataTable tbody tr td,
.dataTables_wrapper table.dataTable thead tr th,
table.dataTable tbody tr td,
table.dataTable thead tr th,
.lms_table_active tbody tr td,
.lms_table_active thead tr th,
#transactionTable tbody tr td,
#transactionTable thead tr th,
#dataTable tbody tr td,
#dataTable thead tr th,
#empTable tbody tr td,
#empTable thead tr th {
    background: transparent !important;
    background-color: transparent !important;
}

/* Override any white backgrounds from DataTables */
table.dataTable.display tbody tr.odd > .sorting_1,
table.dataTable.order-column tbody tr.odd > .sorting_1,
table.dataTable.display tbody tr.even > .sorting_1,
table.dataTable.order-column tbody tr.even > .sorting_1,
table.dataTable.hover tbody tr:hover,
table.dataTable.display tbody tr:hover,
table.dataTable.stripe tbody tr.odd,
table.dataTable.stripe tbody tr.even {
    background: transparent !important;
}

/* Ensure hover effects work properly */
table.dataTable.hover tbody tr:hover,
table.dataTable.display tbody tr:hover {
    background: rgba(255, 255, 255, 0.12) !important;
}

table.dataTable.stripe tbody tr.odd {
    background: rgba(255, 255, 255, 0.06) !important;
}

table.dataTable.stripe tbody tr.even {
    background: rgba(255, 255, 255, 0.03) !important;
}

/* DataTables specific styling */
table.dataTable {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

table.dataTable thead th,
table.dataTable thead td {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(99, 102, 241, 0.3));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

table.dataTable tbody td {
    background: rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 0.85)
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

table.dataTable tbody tr:hover {
    background: rgba(255, 255, 255, 0.12) !important;
}

/* CRITICAL: Force backgrounds on all DataTable elements */
./* dataTables_wrapper *,
.dataTables_wrapper *::before,
.dataTables_wrapper *::after {
    background: transparent !important;
}  */

/* Override DataTable default striping and sorting classes */
table.dataTable.row-border tbody th, 
table.dataTable.row-border tbody td, 
table.dataTable.display tbody th, 
table.dataTable.display tbody td {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

table.dataTable.no-footer {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.dataTables_wrapper {
    color: rgba(255, 255, 255, 0.8);
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: rgba(255, 255, 255, 0.85);
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_length option {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.dataTables_wrapper .dataTables_filter input {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff00;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 6px 12px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.dataTables_wrapper .dataTables_filter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    border-radius: 8px;
    margin: 0 2px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(99, 102, 241, 0.8)) !important;
    border-color: rgba(255, 255, 255, 0.3);
    color: white !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.dataTables_wrapper .dataTables_scrollHeadInner table {
    background: transparent !important;
}

/* Table responsive wrapper */
.table-responsive {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* ===== FORM INPUTS ===== */
.form-control,
.input-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus,
.input-text:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    outline: none;
}

.form-control::placeholder,
.input-text::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

label {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== MODALS ===== */
.modal-content {
    background: rgba(20, 30, 48, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--glass-shadow);
}

.modal-header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-body {
    background: transparent;
}

.modal-footer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: white;
}

.close {
    color: white;
    opacity: 0.7;
}

.close:hover {
    opacity: 1;
}

/* ===== LOGIN PAGE ===== */
.login-2 .form-section,
.login-1 .login-inner-form .details {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--glass-shadow);
}

.login-2 .form-section h3,
.login-1 .login-inner-form h3 {
    color: white;
}

.login-1 .login-inner-form .input-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.login-1 .login-inner-form .input-text::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.login-1 .login-inner-form label,
.login-1 .login-inner-form .checkbox {
    color: rgba(255, 255, 255, 0.8);
}

.login-1 .login-inner-form .footer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: rgba(255, 255, 255, 0.8);
}

.login-1 .login-inner-form .footer span a {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== BADGES ===== */
.badge {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    font-weight: 500;
    border-radius: 20px;
}

.badge-primary {
    background: var(--primary-gradient);
    color: white;
}

.badge-success {
    background: var(--success-gradient);
    color: white;
}

.badge-danger {
    background: var(--danger-gradient);
    color: white;
}

.badge-warning {
    background: var(--warning-gradient);
    color: white;
}

.badge-info {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.8), rgba(26, 115, 232, 0.8));
    color: white;
}

.badge-secondary {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.8), rgba(73, 80, 87, 0.8));
    color: white;
}

/* Badges inside tables */
.table .badge {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

/* ===== DROPDOWNS ===== */
.dropdown-menu {
    background: rgba(30, 40, 60, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: var(--glass-shadow);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== ALERTS ===== */
.alert {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
}

.alert-success {
    background: rgba(0, 150, 136, 0.3);
    border-color: rgba(0, 150, 136, 0.5);
}

.alert-danger {
    background: rgba(231, 81, 90, 0.3);
    border-color: rgba(231, 81, 90, 0.5);
}

.alert-warning {
    background: rgba(226, 160, 63, 0.3);
    border-color: rgba(226, 160, 63, 0.5);
}

.alert-info {
    background: rgba(27, 85, 226, 0.3);
    border-color: rgba(27, 85, 226, 0.5);
}

/* ===== PROGRESS BARS ===== */
.progress {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    height: 10px;
}

.progress-bar {
    background: var(--primary-gradient);
    border-radius: 20px;
}

.progress-bar-success {
    background: var(--success-gradient);
}

.progress-bar-danger {
    background: var(--danger-gradient);
}

.progress-bar-warning {
    background: var(--warning-gradient);
}

/* ===== CHARTS & GRAPHS ===== */
.apexcharts-canvas {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 10px;
}

.apexcharts-text,
.apexcharts-yaxis-label,
.apexcharts-xaxis-label {
    fill: rgba(255, 255, 255, 0.8) !important;
}

.apexcharts-tooltip {
    background: rgba(30, 40, 60, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

/* ===== SCROLLBARS ===== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ===== PAGINATION ===== */
.pagination .page-link {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.pagination .page-link:hover,
.pagination .page-link:focus {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--primary-gradient);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===== TIMELINE & ACTIVITIES ===== */
.timeline-line .item-timeline .t-dot:before {
    background: var(--primary-gradient);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* ===== INCOME/EXPENSE CARDS ===== */
.widget-one,
.widget-two,
.widget-three {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ===== TEXT COLORS ===== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: white !important;
}

p, span, div {
    color: rgba(255, 255, 255, 0.8);
}

/* Table text colors */
.table td, .table th {
    color: rgba(255, 255, 255, 0.85) !important;
}

.table thead th {
    color: rgba(255, 255, 255, 0.95) !important;
}

a {
    color: rgba(139, 92, 246, 0.9);
    transition: all 0.3s ease;
}

a:hover {
    color: rgba(139, 92, 246, 1);
    text-decoration: none;
}

/* Text utilities for tables */
.text-white {
    color: white !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.font-weight-bold {
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ===== SPECIFIC WIDGET STYLES ===== */
.widget-table-two .table,
.widget-table-three .table {
    background: transparent;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .widget,
    .card,
    .white_card {
        border-radius: 15px;
    }
    
    .stat-card {
        margin-bottom: 15px;
    }
}

/* ===== LOADING ANIMATIONS ===== */
@keyframes glassShine {
    from {
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    }
    to {
        box-shadow: 0 8px 32px 0 rgba(139, 92, 246, 0.5);
    }
}

.widget:hover,
.card:hover {
    animation: glassShine 0.5s ease-in-out;
}

/* ===== UTILITY CLASSES ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--glass-shadow);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-card-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ===== GRADIENT BACKGROUNDS ===== */
.gradient-purple {
    background: var(--primary-gradient);
}

.gradient-green {
    background: var(--success-gradient);
}

.gradient-red {
    background: var(--danger-gradient);
}

.gradient-orange {
    background: var(--warning-gradient);
}

/* ===== BOX SHADOW UTILITIES ===== */
.shadow-glass {
    box-shadow: var(--glass-shadow);
}

.shadow-glass-hover:hover {
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
}
