/* LabScheduler – global app styles */
/* MudBlazor handles base reset and typography */

html, body {
    font-family: 'Inter', 'Roboto', Helvetica, Arial, sans-serif;
    height: 100%;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #64748b; }

/* Schedule table row types */
.holiday-row { background-color: #fef3c7 !important; }
.saturday-row { background-color: #e0f2fe !important; }
.sunday-row  { background-color: #dbeafe !important; }

/* MudNavMenu drawer styling */
.mud-nav-link.active {
    background: rgba(59,130,246,0.15) !important;
    border-left: 3px solid var(--mud-palette-primary) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Blazor error overlay */
#blazor-error-ui {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    z-index: 9999;
    display: none;
}
#blazor-error-ui[data-nosnippet]:not(:empty) {
    display: block;
}

.mud-main-content {
    background-color: var(--mud-palette-background);
}

/* Smooth transitions */
.mud-card {
    transition: box-shadow 0.2s ease;
}
.mud-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
}/* Custom Input for SSR Auth forms */
.custom-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 8px;
    background: transparent;
    color: var(--mud-palette-text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.custom-input:focus {
    outline: none;
    border-color: var(--mud-palette-primary);
    box-shadow: 0 0 0 1px var(--mud-palette-primary);
}
.custom-input:disabled {
    background-color: rgba(0,0,0,0.05);
    color: var(--mud-palette-text-disabled);
}
.mud-error-text {
    color: var(--mud-palette-error);
}
