
.tr-card{padding:12px;border-radius:8px;background:#fafafa;margin:10px 0;font-size:16px}.tr-player{margin:6px 0}

/* RESET native button styles across devices */
.tr-rsvp-btn,
button.tr-rsvp-btn,
input.tr-rsvp-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border-radius: 6px;
    border: none;

    padding: 6px 9px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;

    background-color: #1e7e34;
    color: #ffffff;

    cursor: pointer;
    text-align: center;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}
/* Force RSVP status + undo into a vertical stack */
.tr-rsvp-status {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* keeps button left-aligned */
    gap: 4px;

    /* prevents parent flex-row from collapsing layout */
    width: 100%;
}

/* Confirmed label */
.tr-rsvp-confirmed {
    color: #198754;
    font-weight: 700;
    font-size: 14px;
}

/* Undo button stays BELOW checkbox */
.tr-rsvp-remove {
    font-size: 12px;
    padding: 4px 8px;
    align-self: flex-start; /* prevents centering on iOS */
}
