/* Estilos globales del Sistema de Checador */

:root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary: #6c757d;
    --background: #f4f6f9;
    --card-radius: 0.75rem;
    --primary-theme-color: #006400; /* Default color */
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #64748b;
    --background: #0f172a;
    --primary-theme-color: #22c55e;
}

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #e0f0ff, var(--background) 55%);
    color: #212529;
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] body {
    background: radial-gradient(circle at top, #1e293b, var(--background) 55%) !important;
    color: #f1f5f9 !important;
}

[data-theme="dark"] .bg-light {
    background-color: #0f172a !important;
}

/* Navbar */
.navbar {
    box-shadow: 0 0.25rem 0.75rem rgba(15, 23, 42, 0.08);
}

/* Forzar nuestro fondo cuando se usa bg-primary de Bootstrap */
.navbar.bg-primary {
    background: linear-gradient(to right, #00963a, #000000ff) !important;
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Contenedores principales */
.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

/* Tarjetas */
.card {
    border-radius: var(--card-radius);
    border: 1px solid rgba(15, 23, 42, 0.06);
    background-color: #ffffff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .card {
    background-color: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.card-header {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background-color: #ffffff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .card-header {
    background-color: #1e293b !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.card-header h5,
.card-header h4,
.card-header h2 {
    margin-bottom: 0;
}

/* Botones principales */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline-secondary {
    border-radius: 999px;
}

/* Tablas */
.table thead th {
    background-color: #f8fafc;
    border-bottom-width: 1px;
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .table thead th {
    background-color: #1e293b;
    color: #f1f5f9;
}

[data-theme="dark"] .table {
    color: #f1f5f9;
}

.table-striped tbody tr:nth-of-type(odd) {
    --bs-table-accent-bg: #f8fafc;
}

[data-theme="dark"] .table-striped tbody tr:nth-of-type(odd) {
    --bs-table-accent-bg: #1e293b;
}

/* Tarjetas de estadísticas */
.stat-card {
    border: none;
    border-radius: var(--card-radius);
    box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.15);
}

/* Sección de reloj en inicio */
.time-display {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.clock-card {
    border-radius: 1rem;
}

.clock-card .card-body {
    padding-inline: 2.5rem;
}

/* Cartas de asistencia / empleados */
.attendance-card,
.employee-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.attendance-card:hover,
.employee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.08);
}

.status-badge {
    font-size: 0.75rem;
}

/* Layout de configuración (settings) */
#settingsTab .nav-link {
    border-radius: 0;
    border-left: 3px solid transparent;
    color: #212529;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#settingsTab .nav-link.active {
    background-color: #e7f1ff;
    color: var(--primary);
    border-left-color: var(--primary);
}

[data-theme="dark"] #settingsTab .nav-link {
    color: #f1f5f9;
}

[data-theme="dark"] #settingsTab .nav-link.active {
    background-color: #1e293b;
    color: var(--primary);
}

/* Formularios */
.form-control,
.form-select {
    border-radius: 0.5rem;
    background-color: #ffffff;
    color: #212529;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: #1e293b !important;
    color: #f1f5f9 !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    background-color: #1e293b !important;
    color: #f1f5f9 !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25) !important;
}

.form-label {
    color: #212529;
    transition: color 0.3s ease;
}

[data-theme="dark"] .form-label {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .form-check-label {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .form-check-input {
    background-color: #334155 !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

[data-theme="dark"] .form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

[data-theme="dark"] .form-check-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25) !important;
}

/* Toasters / alerts flotantes */
.toast-container {
    z-index: 1080;
}

/* Página de verificación */
.verification-card-header {
    background: linear-gradient(135deg, #198754, #20c997);
}

/* Modal de inicio de sesión personalizado */
.login-modal-custom {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.login-modal-custom .modal-header {
    background: var(--primary-theme-color);
    border: none;
    padding: 1.5rem;
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .modal-content {
    background-color: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .modal-header,
[data-theme="dark"] .modal-footer {
    background-color: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .modal-body {
    background-color: #1e293b;
    color: #f1f5f9;
}

[data-theme="dark"] .modal-title {
    color: #f1f5f9;
}

.login-modal-custom .modal-title {
    color: white;
    font-weight: 600;
    margin: 0;
}

.login-modal-custom .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.login-modal-custom .modal-body {
    padding: 2rem;
}

.login-modal-custom .form-control {
    border-radius: 0.75rem;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #212529;
}

[data-theme="dark"] .login-modal-custom .form-control {
    background-color: #1e293b;
    color: #f1f5f9;
    border-color: rgba(255, 255, 255, 0.2);
}

.login-modal-custom .form-control:focus {
    border-color: #00963a;
    box-shadow: 0 0 0 0.2rem rgba(0, 150, 58, 0.15);
}

[data-theme="dark"] .login-modal-custom .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.login-modal-custom .input-group-text {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 0.75rem 0 0 0.75rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .login-modal-custom .input-group-text {
    background-color: #1e293b;
    border-color: rgba(255, 255, 255, 0.2);
    color: #f1f5f9;
}

.login-modal-custom .btn-primary {
    background: var(--primary-theme-color);
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.login-modal-custom .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 150, 58, 0.3);
}

.login-modal-custom .btn-secondary {
    border-radius: 0.75rem;
    padding: 0.75rem 2rem;
    font-weight: 500;
}

/* Utilidades */
.shadow-soft {
    box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.08);
}

.rounded-xl {
    border-radius: 1rem !important;
}

.text-muted-small {
    font-size: 0.85rem;
    color: #6c757d;
}

[data-theme="dark"] .text-muted-small {
    color: #94a3b8;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #f1f5f9 !important;
}

[data-theme="dark"] p,
[data-theme="dark"] span,
[data-theme="dark"] div {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .text-muted {
    color: #94a3b8 !important;
}

[data-theme="dark"] .list-group-item {
    background-color: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #f1f5f9 !important;
}

[data-theme="dark"] .list-group-item:hover {
    background-color: #334155 !important;
}

[data-theme="dark"] .dropdown-menu {
    background-color: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .dropdown-item {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .dropdown-item:hover {
    background-color: #334155 !important;
    color: #f1f5f9 !important;
}

[data-theme="dark"] .alert {
    background-color: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #f1f5f9 !important;
}

[data-theme="dark"] .btn-close {
    filter: brightness(0) invert(1) !important;
}

[data-theme="dark"] .container,
[data-theme="dark"] .row,
[data-theme="dark"] .col,
[data-theme="dark"] .col-md-1,
[data-theme="dark"] .col-md-2,
[data-theme="dark"] .col-md-3,
[data-theme="dark"] .col-md-4,
[data-theme="dark"] .col-md-5,
[data-theme="dark"] .col-md-6,
[data-theme="dark"] .col-md-7,
[data-theme="dark"] .col-md-8,
[data-theme="dark"] .col-md-9,
[data-theme="dark"] .col-md-10,
[data-theme="dark"] .col-md-11,
[data-theme="dark"] .col-md-12 {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .nav-link {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .nav-link:hover {
    color: #ffffff !important;
}

[data-theme="dark"] .navbar-text {
    color: #f1f5f9 !important;
}

/* Additional dark theme fixes for specific elements */
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background-color: #1e293b !important;
    color: #f1f5f9 !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: #94a3b8 !important;
}

[data-theme="dark"] .btn-outline-primary,
[data-theme="dark"] .btn-outline-secondary,
[data-theme="dark"] .btn-outline-success,
[data-theme="dark"] .btn-outline-danger,
[data-theme="dark"] .btn-outline-warning,
[data-theme="dark"] .btn-outline-info {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #f1f5f9 !important;
}

[data-theme="dark"] .btn-outline-primary:hover,
[data-theme="dark"] .btn-outline-secondary:hover,
[data-theme="dark"] .btn-outline-success:hover,
[data-theme="dark"] .btn-outline-danger:hover,
[data-theme="dark"] .btn-outline-warning:hover,
[data-theme="dark"] .btn-outline-info:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #f1f5f9 !important;
}

[data-theme="dark"] .btn-secondary {
    background-color: #334155 !important;
    border-color: #334155 !important;
    color: #f1f5f9 !important;
}

[data-theme="dark"] .btn-secondary:hover {
    background-color: #475569 !important;
    color: #f1f5f9 !important;
}

[data-theme="dark"] .btn-light {
    background-color: #334155 !important;
    color: #f1f5f9 !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

[data-theme="dark"] .btn-light:hover {
    background-color: #475569 !important;
    color: #f1f5f9 !important;
}

[data-theme="dark"] .employee-card,
[data-theme="dark"] .attendance-card {
    background-color: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .employee-card h5,
[data-theme="dark"] .employee-card h6,
[data-theme="dark"] .attendance-card h5,
[data-theme="dark"] .attendance-card h6 {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .employee-card p,
[data-theme="dark"] .employee-card span,
[data-theme="dark"] .attendance-card p,
[data-theme="dark"] .attendance-card span {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .employee-card .text-muted,
[data-theme="dark"] .attendance-card .text-muted {
    color: #94a3b8 !important;
}

[data-theme="dark"] .stat-card {
    background-color: #1e293b !important;
}

[data-theme="dark"] .clock-card {
    background-color: #1e293b !important;
}

[data-theme="dark"] .input-group-text {
    background-color: #1e293b !important;
    color: #f1f5f9 !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

[data-theme="dark"] .form-check-input {
    background-color: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

[data-theme="dark"] .form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* Botón principal de registrar entrada/salida */
.main-action-btn {
    border-radius: 999px;
}

/* Dropdown submenu styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

@media (max-width: 576px) {
    .time-display {
        font-size: 2.4rem;
    }

    .clock-card .card-body {
        padding-inline: 1.25rem;
    }
}

/* Calendar Modal Dark Theme Styles */
.calendar-modal-dark {
    background-color: #1e293b !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 1rem !important;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.4) !important;
}

#employeeCalendarModal .modal-dialog {
    max-width: 95vw !important;
    margin: 1rem auto;
}

#employeeCalendarModal .modal-xl {
    max-width: 95vw !important;
}

.calendar-modal-header {
    background-color: #1e293b !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1.25rem 1.5rem !important;
}

.calendar-modal-header .modal-title {
    color: #f1f5f9 !important;
    font-weight: 600;
}

.calendar-modal-body {
    background-color: #1e293b !important;
    padding: 1.5rem !important;
}

.calendar-sidebar {
    background-color: #0f172a;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.calendar-refresh-btn {
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #94a3b8 !important;
    border-radius: 999px !important;
}

.calendar-refresh-btn:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #f1f5f9 !important;
}

.calendar-branch-select {
    background-color: #1e293b !important;
    color: #f1f5f9 !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    border-radius: 0.5rem !important;
}

.calendar-branch-select:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25) !important;
}

.calendar-employees-list {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.calendar-employees-list::-webkit-scrollbar {
    width: 6px;
}

.calendar-employees-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.calendar-employees-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.calendar-employees-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.calendar-employees-list .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.08);
    --bs-accordion-color: #f1f5f9;
}

.calendar-employees-list .accordion-item {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.calendar-employees-list .accordion-button {
    background-color: rgba(255, 255, 255, 0.03);
    color: #f1f5f9;
    font-weight: 500;
    padding: 0.75rem 1rem;
}

.calendar-employees-list .accordion-button:not(.collapsed) {
    background-color: rgba(59, 130, 246, 0.15);
    color: #f1f5f9;
    box-shadow: none;
}

.calendar-employees-list .accordion-button::after {
    filter: brightness(0) invert(1);
}

.calendar-employees-list .accordion-body {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 0.5rem;
}

.calendar-employees-list .list-group-item {
    background-color: transparent;
    border: none;
    color: #cbd5e1;
    padding: 0.6rem 0.75rem;
    border-radius: 0.4rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.calendar-employees-list .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #f1f5f9;
}

.calendar-employees-list .list-group-item.active {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-left: 3px solid #22c55e;
}

.calendar-employees-list .employee-calendar-item .rounded-circle {
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.calendar-employees-list .employee-calendar-item.active .rounded-circle {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

.calendar-main {
    background-color: #0f172a;
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.calendar-header-text {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
}

.calendar-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.calendar-container::-webkit-scrollbar {
    width: 6px;
}

.calendar-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.calendar-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.calendar-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* FullCalendar Dark Theme Overrides */
.fc .fc-toolbar-title {
    color: #f1f5f9 !important;
    font-weight: 600;
}

.fc .fc-button {
    background-color: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #f1f5f9 !important;
    font-weight: 500;
}

.fc .fc-button:hover {
    background-color: #334155 !important;
    color: #f1f5f9 !important;
}

.fc .fc-button-primary {
    background-color: #3b82f6 !important;
    border-color: #3b82f6 !important;
}

.fc .fc-button-primary:hover {
    background-color: #2563eb !important;
    border-color: #2563eb !important;
}

.fc .fc-button-active {
    background-color: #3b82f6 !important;
    border-color: #3b82f6 !important;
}

.fc .fc-col-header-cell-cushion {
    color: #94a3b8 !important;
    font-weight: 500;
    padding: 0.5rem !important;
}

.fc .fc-daygrid-day-number {
    color: #cbd5e1 !important;
    font-weight: 500;
}

.fc-theme-standard .fc-scrollgrid {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.fc .fc-daygrid-day {
    background-color: transparent !important;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgba(59, 130, 246, 0.1) !important;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    color: #3b82f6 !important;
    font-weight: 600;
}

.fc .fc-event {
    border: none !important;
    border-radius: 0.375rem !important;
    cursor: pointer;
}

.fc .fc-event-title {
    color: white !important;
    font-weight: 500;
}

.fc .fc-daygrid-event {
    background-color: #3b82f6 !important;
}

.fc .fc-timegrid-event {
    background-color: #3b82f6 !important;
}

.fc .fc-daygrid-event:hover,
.fc .fc-timegrid-event:hover {
    filter: brightness(1.1);
}

/* View switcher buttons */
.fc .fc-toolbar-chunk {
    display: flex;
    align-items: center;
}

.fc .fc-button-group {
    display: flex;
    gap: 0.25rem;
}

.fc .fc-button-group .fc-button {
    border-radius: 0.375rem !important;
    margin: 0;
}

/* Light theme fallback for calendar modal */
[data-theme="light"] .calendar-modal-dark {
    background-color: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .calendar-modal-header {
    background-color: #ffffff !important;
    border-bottom-color: rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .calendar-modal-header .modal-title {
    color: #212529 !important;
}

[data-theme="light"] .calendar-modal-body {
    background-color: #f8fafc !important;
}

[data-theme="light"] .calendar-sidebar {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .calendar-refresh-btn {
    border-color: #dee2e6 !important;
    color: #6c757d !important;
}

[data-theme="light"] .calendar-refresh-btn:hover {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

[data-theme="light"] .calendar-branch-select {
    background-color: #ffffff !important;
    color: #212529 !important;
    border-color: #dee2e6 !important;
}

[data-theme="light"] .calendar-branch-select:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}

[data-theme="light"] .calendar-employees-list .accordion-button {
    background-color: #f8f9fa;
    color: #212529;
}

[data-theme="light"] .calendar-employees-list .accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
}

[data-theme="light"] .calendar-employees-list .accordion-button::after {
    filter: none;
}

[data-theme="light"] .calendar-employees-list .accordion-body {
    background-color: #ffffff;
}

[data-theme="light"] .calendar-employees-list .list-group-item {
    color: #495057;
}

[data-theme="light"] .calendar-employees-list .list-group-item:hover {
    background-color: #f8f9fa;
    color: #212529;
}

[data-theme="light"] .calendar-employees-list .list-group-item.active {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
    border-left-color: #198754;
}

[data-theme="light"] .calendar-main {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .calendar-header-text {
    color: #6c757d;
    background-color: #f8f9fa;
}

[data-theme="light"] .fc .fc-toolbar-title {
    color: #212529 !important;
}

[data-theme="light"] .fc .fc-button {
    background-color: #f8f9fa !important;
    border-color: #dee2e6 !important;
    color: #212529 !important;
}

[data-theme="light"] .fc .fc-button:hover {
    background-color: #e9ecef !important;
}

[data-theme="light"] .fc .fc-col-header-cell-cushion {
    color: #6c757d !important;
}

[data-theme="light"] .fc .fc-daygrid-day-number {
    color: #495057 !important;
}

[data-theme="light"] .fc-theme-standard .fc-scrollgrid {
    border-color: #dee2e6 !important;
}
