﻿/* Dark Mode Overrides - dark.css */

/* Selected items */
.mud-list-item.mud-selected-item {
    background-color: #4A90E2 !important;
    color: #FFFFFF !important;
}

/* Hover states */
.mud-list-item:hover {
    background-color: #357ABD !important;
    color: #FFFFFF !important;
}

/* All icons */
.mud-icon-root {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

/* Date picker */
.mud-picker-calendar-day.mud-current,
.mud-picker-calendar-day.mud-selected {
    background-color: #4A90E2 !important;
    color: #FFFFFF !important;
    border-color: #4A90E2 !important;
}

.mud-picker-calendar-day:hover {
    background-color: #357ABD !important;
    color: #FFFFFF !important;
}

/* Input labels */
.mud-input-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

    /* Focused/active input labels */
    .mud-input:focus-within .mud-input-label,
    .mud-select:focus-within .mud-input-label,
    .mud-input-label.mud-input-label-focused,
    .mud-select.mud-select-open .mud-input-label {
        color: #FFFFFF !important;
    }
