/* Google Places dropdown above theme overlays */
.pac-container {
    z-index: 100050 !important;
}

.fc-form-container {
    max-width: 1365px;
    margin: 0 auto;
   /* font-family: Arial, sans-serif; */
    color: #333;
}

.fc-form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.fc-form-section h4 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #d93740;
    border-bottom: 2px solid #d93740;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.fc-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.fc-col {
    flex: 1 1 33%;
    padding: 10px;
    box-sizing: border-box;
}

.fc-col-full {
    flex: 1 1 100%;
    padding: 10px;
    box-sizing: border-box;
}

.fc-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}
.fc-form-container input[type="radio"]{
    margin-right: 5px;
}
.fc-form-container input[type="text"],
.fc-form-container input[type="email"],
.fc-form-container input[type="tel"],
.fc-form-container input[type="number"],
.fc-form-container input[type="date"],

.fc-form-container select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.fc-consent {
    font-weight: normal !important;
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px !important;
}

.fc-consent .fc-consent-text {
    flex: 1;
    min-width: 0;
}

.fc-consent .fc-consent-text p {
    margin: 0 0 0.75em;
}

.fc-consent .fc-consent-text p:last-child {
    margin-bottom: 0;
}

.fc-form-submit {
    text-align: right;
    margin-top: 20px;
}

.fc-btn {
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

.fc-btn-primary {
    background: #d93740;
    color: #fff;
    font-weight: bold;
}

.fc-btn-primary:hover {
    background: #c4282f;
}

.fc-msg {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.fc-msg-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.fc-msg-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.radio-group{
   font-size: 0.9rem;
}
.fc-form-container p{
    font-size: 0.9rem;
}
.fc-form-container h3{
    font-size: 1.2rem;
    margin-bottom: 0px !important;
}
.fc-form-container .referee-group{
    border: solid 1px #c3c3c3;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
  
}
.fc-form-container .small-text{
    font-size: 0.7rem !important;
    font-weight: 500 !important;
}

/* Highlight fields with validation errors */
.fc-error {
    border: 2px solid #c00;
    background-color: #ffe6e6;
    outline: 2px solid #c00;
    outline-offset: 1px;
}

input[type='radio'].fc-error,
input[type='checkbox'].fc-error {
    outline: 2px solid #c00;
    outline-offset: 2px;
}

/* Whole radio/checkbox row — border is visible (inputs alone are too small) */
.fc-error-group {
    border: 2px solid #c00 !important;
    border-radius: 6px;
    background-color: rgba(255, 230, 230, 0.45);
    padding: 10px 12px;
    margin-bottom: 8px;
    box-shadow: 0 0 0 1px rgba(204, 0, 0, 0.25);
}
.fc-form-container label span{
       font-size: 1rem;
    color: red;
}
/* .fc-credit-cards-group .fc-credit-cards-group{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
} */

.fc-consent-text {
    color: #333 !important;
}
/* Mobile Responsiveness */
@media (max-width: 600px) {
    .fc-col {
        flex: 1 1 100%;
    }
}
@media (min-width: 600px) and (max-width: 900px) {
    .fc-col {
        flex: 1 1 45%;
    }
}