/*
 * Utilities Light Mode Override
 * Force light theme - disable all dark mode
 */

/* Force Light Background Globally */
body,
.container-fluid,
.utility-card,
.stat-card,
.filter-card,
.mobile-card,
.table-utility,
.utility-card-body,
.empty-state {
    background-color: #ffffff !important;
    color: #212529 !important;
}

/* Card Backgrounds */
.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
}

.filter-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
}

/* Table Light Mode */
.table-utility thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.table-utility thead th {
    color: #ffffff !important;
    background: transparent !important;
}

.table-utility tbody td {
    background-color: #ffffff !important;
    color: #212529 !important;
}

.table-utility tbody tr:hover td {
    background-color: #f8f9fa !important;
}

/* Form Elements */
.form-control,
.form-select {
    background-color: #ffffff !important;
    color: #212529 !important;
    border-color: #ced4da !important;
}

.form-control:focus,
.form-select:focus {
    background-color: #ffffff !important;
    color: #212529 !important;
    border-color: #667eea !important;
}

/* Utility Card Header */
.utility-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
}

.utility-card-body {
    background: #ffffff !important;
    color: #212529 !important;
}

/* Alerts */
.alert-utility {
    background-color: #ffffff !important;
    border: 1px solid #dee2e6 !important;
}

.alert-success {
    background-color: #d1e7dd !important;
    color: #0f5132 !important;
}

.alert-danger {
    background-color: #f8d7da !important;
    color: #842029 !important;
}

.alert-warning {
    background-color: #fff3cd !important;
    color: #664d03 !important;
}

.alert-info {
    background-color: #cff4fc !important;
    color: #055160 !important;
}

/* Pagination */
.pagination-utility .page-link {
    background-color: #ffffff !important;
    color: #667eea !important;
    border-color: #dee2e6 !important;
}

.pagination-utility .page-item.active .page-link {
    background-color: #667eea !important;
    color: #ffffff !important;
    border-color: #667eea !important;
}

/* Mobile Cards */
.card {
    background-color: #ffffff !important;
    color: #212529 !important;
}

.card-body {
    background-color: #ffffff !important;
}

/* List Group */
.list-group-item {
    background-color: #ffffff !important;
    color: #212529 !important;
}

/* Disable Dark Mode Media Query */
@media (prefers-color-scheme: dark) {
    * {
        color-scheme: light !important;
    }
    
    body,
    .container-fluid,
    .utility-card,
    .stat-card,
    .filter-card,
    .table-utility,
    .form-control,
    .form-select,
    .card {
        background-color: #ffffff !important;
        color: #212529 !important;
    }
}

