/* Form container */
.rr-form {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: transparent;
    font-family: "Helvetica Neue", Arial, sans-serif;
}
/* Inputs, Select, Textarea */
.rr-form input,
.rr-form select,
.rr-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid #C4A882;
    border-radius: 4px;
    color: #3D2B1F;
    font-size: 14px;
    letter-spacing: 0.5px;
    outline: none;
    box-shadow: none;
    transition: all 0.25s ease;
}
/* Placeholder styling */
.rr-form input::placeholder,
.rr-form textarea::placeholder {
    color: #A08060;
    opacity: 1;
}
/* Focus state */
.rr-form input:focus,
.rr-form select:focus,
.rr-form textarea:focus {
    border-color: #8B2E2E;
    box-shadow: 0 0 0 1px rgba(139, 46, 46, 0.2);
}
/* Select dropdown arrow styling */
.rr-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #8B2E2E 50%),
        linear-gradient(135deg, #8B2E2E 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px),
                         calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px;
    background-repeat: no-repeat;
}
/* Date input light mode */
.rr-form input[type="date"] {
    color-scheme: light;
}
/* Button */
.rr-form button {
    background: transparent;
    border: 1px solid #8B2E2E;
    color: #8B2E2E;
    padding: 12px;
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}
/* Button hover */
.rr-form button:hover {
    background: #8B2E2E;
    color: #F5EDE0;
}
/* Success & Error messages */
.rr-success {
    color: #8B2E2E;
    font-size: 14px;
    margin-top: 10px;
}
.rr-error {
    color: #b94040;
    font-size: 14px;
    margin-top: 10px;
}
/* Mobile optimization */
@media (max-width: 600px) {
    .rr-form { max-width: 100%; }
}
/* Time dropdown matches form styling */
.rr-form select {
    color: #3D2B1F !important;
    background-color: transparent !important;
}
/* Dropdown options */
.rr-form select option {
    color: #3D2B1F;
    background-color: #F5EDE0;
}
/* Row container */
.rr-form .rr-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
/* Make inputs/select in row share space */
.rr-form .rr-row input,
.rr-form .rr-row select {
    flex: 1 1 48%;
    min-width: 120px;
}
/* Mobile: stack fields */
@media (max-width: 600px) {
    form.rr-form .rr-row input,
    form.rr-form .rr-row select {
        flex: 1 1 100% !important;
    }
}