/* ========== Team Picker ========== */

.team-picker {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    animation: fadeIn 0.2s ease;
}

.team-picker-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.team-picker-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.team-picker-grid {
    display: flex;
    gap: 20px;
}

.team-card {
    width: 220px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.team-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.team-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}

.team-card:nth-child(1) .team-card-icon {
    background: rgba(59, 130, 246, 0.1);
}

.team-card:nth-child(2) .team-card-icon {
    background: rgba(139, 92, 246, 0.1);
}

.team-card-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.team-card-count {
    font-size: 13px;
    color: var(--text-light);
}

/* ========== Team Active Bar ========== */

.team-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.team-bar-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.team-bar-label.team-2 {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.team-bar-switch {
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    background: none;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.team-bar-switch:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.04);
}
