header { z-index: 0 !important; }
.pfa-contact-form { display: flex; flex-direction: column; gap: 15px; }
.pfa-contact-form label { display: block; font-weight: 600; text-align: left; }
.pfa-contact-form input, .pfa-contact-form textarea {
    width: 100%;
    padding: 8px;
    border: var(--wc-form-border-width) solid var(--wc-form-border-color);
    border-radius: var(--wc-form-border-radius);
}
.pfa_modal .pfa-contact-form p {
    margin-bottom: 0;
}
.pfa_modal .pfa-contact-form input {
    margin-bottom: 0;
}
.pfa-form-actions { display: flex; gap: 10px; justify-content: center; margin-top: 10px; }
.pfa_button.primary {
    border-radius: 9999px;
}
.pfa_calendar_picker {
    text-align: center;
    margin: 20px 0;
}
.pfa_calendar_picker .flatpickr-calendar {
    margin: 0 auto 30px auto;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
/* Spinner styles */
.pfa_loading_spinner {
    display: none;
    text-align: center;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    z-index: 10;
}
.pfa_loading_spinner.active {
    display: block;
}
.pfa_spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.pfa_modal_content {
    position: relative;
}
.pfa_error_message {
    display: none;
    color: red;
    margin-top: 10px;
    text-align: center;
}
.pfa_error_message.active {
    display: block;
}
