.reservas-list {
    display: grid;
    gap: 18px;
}

.reserva-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reserva-card__head {
    padding: 14px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
}

.reserva-card__time {
    font-weight: 700;
    color: #1f2937;
}

.reserva-card__title {
    color: #4b5563;
    font-weight: 600;
}

.reserva-card__body {
    padding: 8px 16px 14px;
}

.reserva-socios {
    list-style: none;
    margin: 0;
    padding: 0;
}

.reserva-socio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #edf0f3;
}

.reserva-socio:last-child {
    border-bottom: 0;
}

.reserva-socio__info {
    min-width: 0;
    flex: 1;
}

.reserva-socio__name-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.reserva-socio__name {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    word-break: break-word;
}


.reserva-socio__actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.reserva-action {
    border: 1px solid transparent;
    color: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 96px;
    text-align: center;
}

.reserva-action--yes {
    background: #15803d;
}

.reserva-action--no {
    background: #b91c1c;
}

.reserva-action:hover:not(:disabled) {
    background: var(--tf-primary-dark);
    border-color: var(--tf-primary-dark);
    color: #fff;
}

.reserva-action.is-active {
    color: #fff;
    cursor: default;
    box-shadow: none;
    transform: none;
}

/*.reserva-action--yes.is-active {
    background: #d97777;
    border-color: #d97777;
}

.reserva-action--no.is-active {
    background: #b91c1c;
    border-color: #b91c1c;
}*/

.reserva-action:disabled {
    opacity: 1;
    cursor: default;
    pointer-events: none;
}

.reserva-action.is-active {
    color: #fff;
    border-color: transparent;
}


.reserva-action:disabled {
    opacity: 1;
    cursor: default;
}

.reserva-socio__actions.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

.reservas-msg {
    margin: 0;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.reservas-msg--loading {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.reservas-msg--empty {
    background: #f9fafb;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.reservas-msg--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

@media (max-width: 640px) {
    .reserva-socio {
        flex-direction: column;
        align-items: stretch;
    }

    .reserva-socio__actions {
        width: 100%;
    }

    .reserva-action {
        flex: 1;
        min-width: 0;
    }
}

.reserva-socio__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.reserva-socio__icon--yes {
    background: #15803d;
    color: #fff;
}

.reserva-socio__icon--no {
    background: #b91c1c;
    color: #fff;
}

.reserva-socio__actions button {
    background: #28a745;
}

.reserva-action.reserva-action--yes.is-active {
    background: #85cf96;
    border-color: #fff;
}

.reserva-action.reserva-action--no {
    background: #b91c1c;
}

.reserva-action.reserva-action--no.is-active {
    background: #bd7171;
}