/* Wedding RSVP Elementor Widget Styles */

.wedding-rsvp-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.wedding-rsvp-heading {
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 600;
}

.wedding-rsvp-subheading {
    margin-bottom: 30px;
    font-size: 18px;
}

.wedding-rsvp-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.rsvp-step {
    display: none;
}

.rsvp-step.active {
    display: block;
}

.rsvp-instructions {
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

textarea.form-control {
    min-height: 100px;
}

button {
    background-color: #D3B88C;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #c0a67a;
}

.search-button, .submit-button {
    width: 100%;
}

.back-button, .back-to-search-button, .start-over-button {
    background-color: #888;
    margin-right: 10px;
}

.back-button:hover, .back-to-search-button:hover, .start-over-button:hover {
    background-color: #777;
}

.search-results, .search-error {
    margin-top: 15px;
}

.search-error {
    color: #d9534f;
    text-align: center;
    font-weight: bold;
}

/* Guest selection styles */
.guest-selection {
    margin-bottom: 20px;
}

.guest-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.guest-item:hover {
    background-color: #f9f9f9;
}

.guest-item-selected {
    border-color: #D3B88C;
    background-color: #f9f7f2;
}

.guest-item h3 {
    margin: 0 0 5px 0;
}

.guest-item p {
    margin: 0;
    color: #666;
}

/* Guest details on the form */
.guest-details {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f7f2;
    border-radius: 4px;
}

.guest-details h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.guest-details p {
    margin-bottom: 5px;
}

/* Custom questions styles */
.custom-questions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.custom-questions h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.radio-option, .checkbox-option {
    margin-bottom: 10px;
}

/* Thank you message */
.thank-you-message {
    text-align: center;
    margin-bottom: 20px;
}

.thank-you-message h3 {
    color: #5cb85c;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .wedding-rsvp-form {
        padding: 20px;
    }
    
    .wedding-rsvp-heading {
        font-size: 28px;
    }
    
    .wedding-rsvp-subheading {
        font-size: 16px;
    }
}

/* Hide attending options initially */
.attending-options {
    display: none;
} 