/* ===== Theme Override ===== */

:root {
    --primary: #dc3545;
    --secondary: #ffffff;
    --light: #6c757d;
    --dark: #f8f9fa;
}

/* Table Styling */
.table {
    background-color: white !important;
}

.table thead th {
    background-color: #fff5f5 !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fffafa !important;
}

.table-hover tbody tr:hover {
    background-color: #ffe5e5 !important;
}

/* Sidebar border */
.sidebar {
    border-right: 1px solid #eee;
}

.bg-secondary {
    background-color: #ffffff !important;
}

.bg-dark {
    background-color: #ffffff !important;
}

.card {
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.container-fluid .bg-secondary {
    background-color: #ffffff !important;
}

.container-fluid {
    background-color: #fdfdfd !important;
}

.bg-secondary {
    background-color: #ffffff !important;
}

.bg-dark {
    background-color: #ffffff !important;
}

body {
    background-color: #f8f9fa !important;
}


.btn-secondary {
    background-color: #fff5f5 !important;
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #212529 !important;
}

.bg-secondary {
    background-color: #ffffff !important;
    color: #212529 !important;
}
.bg-secondary a {
    color: #dc3545;
    font-weight: 500;
}

.bg-secondary.rounded {
    background-color: #ffffff !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.form-control {
    background-color: #ffffff !important;
    color: #212529 !important;
    border: 1px solid #dee2e6 !important;
}

.form-select {
    background-color: #ffffff !important;
    color: #212529 !important;
    border: 1px solid #dee2e6 !important;
}








.content {
    background-color: #f8f9fa !important;
}
.btn {
    border-radius: 8px;
}

input, .form-control {
    border-radius: 8px;
}

.form-switch .form-check-input {
    background-color: #e9ecef;
    border-color: #ced4da;
}
.form-switch .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
.form-check-input {
    background-color: #fff;      /* unchecked = white */
    border: 1px solid #ccc;
}

.form-check-input:checked {
    background-color: red;       /* keep your red */
    border-color: red;
}
