/**
 * Custom 24-hour time input styling
 */

.time-24h-input {
    font-family: 'Courier New', monospace;
    font-size: 1.1em;
    letter-spacing: 0.1em;
    text-align: center;
    font-weight: 600;
}

.time-24h-input::placeholder {
    font-family: 'Inter', sans-serif;
    letter-spacing: normal;
    font-weight: 400;
}

.time-24h-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    border-color: #86b7fe;
}

.time-help-text {
    display: block;
    margin-top: 0.25rem;
}

.time-help-text i {
    color: #0d6efd;
}

/* Visual indicator when input is filled */
.time-24h-input:valid:not(:placeholder-shown) {
    background-color: #f8f9fa;
    border-color: #198754;
}

.time-24h-input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

