.vrm-input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.uk-number-plate-input {
    width: 100%;
    max-width: 220px;
    min-width: 200px;
    height: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Courier New', 'Charles Wright', monospace, sans-serif;
    font-weight: 900;
    font-size: 18px;
    text-align: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%), url('/assets/images/ui/uk-number-plate-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #1a1a1a;
    border-radius: 6px;
    padding: 16px 20px;
    color: #000000;
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.1),
        0 4px 8px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.8) inset;
    transition: all 0.2s ease;
    position: relative;
}

.uk-number-plate-input:focus {
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.1),
        0 4px 8px rgba(0,0,0,0.15),
        0 0 0 3px rgba(0, 123, 255, 0.25),
        0 0 0 1px rgba(255,255,255,0.8) inset;
}

#lookupButton,
.vrm-lookup-btn {
    height: 60px;
    padding: 0 24px;
    background: #c40000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(254, 10, 10, 0.3);
}

#lookupButton:hover,
.vrm-lookup-btn:hover {
    background: #cc0808;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(254, 10, 10, 0.4);
}

@media (max-width: 768px) {
    .uk-number-plate-input {
        max-width: 180px !important;
        min-width: 160px !important;
        height: 50px !important;
        font-size: 16px !important;
        letter-spacing: 2px !important;
        padding: 12px 16px !important;
    }
    .vrm-input-container {
        flex-direction: column !important;
        gap: 8px !important;
    }
    #lookupButton {
        height: 50px !important;
        width: 100% !important;
        max-width: 180px !important;
    }
}

#vrmError {
    display: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0.5rem;
    clear: both;
}

#booking-form-container {
    display: none;
}

.eligibility-warning {
    display: none;
    margin-top: 10px;
    padding: 12px 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    color: #856404;
}

.eligibility-warning p {
    margin: 6px 0 0 0;
    font-size: 14px;
}

.eligibility-warning a {
    color: #856404;
    font-weight: bold;
    text-decoration: underline;
}

.service-other-hidden {
    display: none;
}

.calendar-legend-today {
    border: 2px solid #b91c1c;
    color: #b91c1c;
    background-color: white;
}

.calendar-legend-today-dot {
    background-color: #b91c1c;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
}

.calendar-legend-sunday {
    background-color: #ffeeee;
    color: rgba(57, 57, 57, 0.3);
}

.calendar-legend-disabled-text {
    text-decoration: line-through;
    font-size: 10px;
}

.calendar-legend-holiday {
    background-color: #fff0f0;
    color: rgba(57, 57, 57, 0.3);
    border-color: rgba(255, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .holiday-hours-info.mobile-only {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .holiday-hours-info.mobile-only {
        display: block !important;
    }
}
