/* Plugin-specific order form CSS overrides (minimal — main styles in theme) */

/* Ensure form renders well even without the theme */
.kitchen116-order-form {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Date input styling across browsers */
input[type="date"].form-control {
    cursor: pointer;
}
input[type="date"].form-control::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}
input[type="date"].form-control::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Number input arrows */
input[type="number"].form-control::-webkit-inner-spin-button,
input[type="number"].form-control::-webkit-outer-spin-button {
    opacity: 1;
}

/* Validation error state */
.form-control.has-error {
    border-color: #C62828 !important;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12) !important;
}
