.choose-team-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0d1f2d 0%, #1a5f7a 100%);
    overflow-y: auto;
    z-index: 150;
    padding: 32px 16px 64px 16px;
}

.choose-team-inner {
    max-width: 720px;
    margin: 0 auto;
}

.choose-team-title {
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
}

.choose-team-description {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.choose-team-empty {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-top: 48px;
}

.choose-team-filter {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.choose-team-filter-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.choose-team-filter-select {
    width: 100%;
    padding: 10px 36px 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px 10px;
    cursor: pointer;
}

.choose-team-filter-select:focus-visible {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.14);
}

.choose-team-filter-select option {
    color: #111;
    background: #fff;
}

.choose-team-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.choose-team-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
        "emblem name  value"
        "emblem league value";
    align-items: center;
    gap: 4px 12px;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.choose-team-row:hover,
.choose-team-row:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    outline: none;
    transform: translateY(-1px);
}

.choose-team-emblem {
    grid-area: emblem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-team-name {
    grid-area: name;
    font-weight: 600;
    font-size: 1.05rem;
}

.choose-team-league {
    grid-area: league;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.choose-team-value {
    grid-area: value;
    font-variant-numeric: tabular-nums;
    font-weight: 400;
    color: #ffd166;
}
