.rsvp-card {
    max-width: 600px;
    margin: 60px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
}

.rsvp-card-hero {
    height: 250px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rsvp-card-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    padding: 20px;
}

.rsvp-card-content {
    padding: 30px;
}

.rsvp-card h2 {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

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

.rsvp-card input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.rsvp-card button {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
}

/* Ajuste general para la card de detalles */
.rsvp-details-card {
    padding: 20px;
    text-align: left;
}

/* Header del evento */
.rsvp-details-header h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Detalles del evento */
.rsvp-details-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rsvp-detail-item {
    display: flex;
    align-items: center;
}

.rsvp-detail-item svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.rsvp-detail-item p {
    margin: 0;
    font-size: 16px;
}

/* Invitados asociados */
.rsvp-guests h2 {
    font-size: 20px;
    margin: 20px 0 10px;
}

/* Invitados asociados: Ajuste del layout */
/* Invitados Asociados: Ajuste de disposición */
.rsvp-guests ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rsvp-guests li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Nombre del invitado */
.guest-info span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Contenedor de botones */
.guest-actions {
    display: flex;
    gap: 8px;
}

/* Botones Aceptar/Rechazar */
.rsvp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    min-width: 80px;
    white-space: nowrap;
    text-align: center;
    border: 2px solid #ccc;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 8px;
    gap: 4px;
}

.rsvp-button i {
    margin-right: 4px;
    margin-left: 4px;
    display: none;
}

.accepted-button.selected {
    background-color: #e0ffe6;
    border-color: #28a745;
}

.decline-button.selected {
    background-color: #ffe0e0;
    border-color: #dc3545;
}

/* Botón Continuar */
.rsvp-continue {
    margin-top: 20px;
    text-align: center;
}

.rsvp-continue button {
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
}