.simplified-rsvp-section {
    margin: 20px 0;
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #ddd;
}

.simplified-rsvp-section h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #104f55;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.member-simple-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.member-choice-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.member-name {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #104f55;
}

.member-choice-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.choice-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f0f0f0;
    padding: 8px 15px;
    border-radius: 20px;
    flex: 1;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.choice-option:hover {
    background-color: #e0e0e0;
}

.choice-option label {
    cursor: pointer;
    font-weight: 500;
    user-select: none;
}

.choice-option input[type="radio"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

/* Better styling for selected options */
.choice-option input[type="radio"]:checked + label {
    font-weight: bold;
}

.choice-option input[value="attending"]:checked + label {
    color: #28a745;
}

.choice-option input[value="declined"]:checked + label {
    color: #dc3545;
}

.choice-option:has(input[value="attending"]:checked) {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
}

.choice-option:has(input[value="declined"]:checked) {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
}