/* Tournament Registration Page - Specific Styles */
/* Extends registration-form.css */

/* Tournament specific styling if needed */
.tournament-info-highlight {
    background: linear-gradient(135deg, rgba(208, 167, 100, 0.15), rgba(130, 113, 83, 0.1));
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

/* Roster status indicator */
.roster-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.roster-status.available {
    background: #d4edda;
    color: #155724;
}

.roster-status.limited {
    background: #fff3cd;
    color: #856404;
}

.roster-status.full {
    background: #f8d7da;
    color: #721c24;
}

/* Waitlist notice */
.waitlist-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.waitlist-notice p {
    margin: 0;
    color: #856404;
}
