/* ==========================================================================
   Sign-up Status Section (collapsible table on Bookings Sign-up page)
   ========================================================================== */

.signup-status {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.signup-status__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.625rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--color-text);
}

.signup-status__toggle:hover {
    background: #f9fafb;
}

.signup-status__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.signup-status__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.375rem;
    border-radius: 9999px;
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
}

.signup-status__panel {
    border-top: 1px solid var(--color-border);
}

.signup-status__table {
    width: 100%;
    font-size: 0.8125rem;
    border-collapse: collapse;
}

.signup-status__table thead {
    background: #f9fafb;
}

.signup-status__table th {
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #6b7280;
    text-align: left;
}

.signup-status__table td {
    padding: 0.5rem 1rem;
    border-top: 1px solid #f3f4f6;
}

.signup-status__link {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
}

.signup-status__link:hover {
    text-decoration: underline;
}

.signup-status__badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.signup-status__badge--pending {
    background: #fef3c7;
    color: #92400e;
}

.signup-status__badge--confirmed {
    background: #d1fae5;
    color: #065f46;
}

@media (max-width: 575.98px) {
    .signup-status__table th:nth-child(3),
    .signup-status__table td:nth-child(3) {
        display: none;
    }
}
