/**
 * 마이랭킹 2026 - 대회 상세 페이지 전용 스타일
 */

/* ===== 토글 카드 (Collapsible Card) ===== */
.collapsible-card .toggle-header {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.collapsible-card .toggle-header:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.collapsible-card .toggle-header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.collapsible-card .toggle-arrow {
    transition: transform 0.3s ease;
    color: #5f6368;
    font-size: 24px;
}

.collapsible-card.collapsed .toggle-arrow {
    transform: rotate(0deg);
}

.collapsible-card:not(.collapsed) .toggle-arrow {
    transform: rotate(180deg);
}

.collapsible-card .collapsible-content {
    overflow: hidden;
}

.collapsible-card.collapsed .collapsible-content {
    display: none;
}

.collapsible-card:not(.collapsed) .collapsible-content {
    display: block;
}

/* 시리즈 대회 섹션 토글 */
.series-competitions-section.collapsible-card .section-title {
    cursor: pointer;
    user-select: none;
}

.series-competitions-section.collapsible-card .section-title .toggle-arrow {
    margin-left: auto;
}

.series-competitions-section.collapsible-card.collapsed .series-list {
    display: none;
}

.series-competitions-section.collapsible-card:not(.collapsed) .series-list {
    display: flex;
}

/* ===== 스택 스크롤 효과 (Stacking Scroll Effect) ===== */
.result-container .swimmer-header {
    position: relative;
    z-index: 10;
}

.result-container .stats-grid {
    position: relative;
    z-index: 20;
    box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.15);
}

.result-container .card {
    position: relative;
    z-index: 30;
    box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.1);
}

.result-container .card:nth-of-type(2) { z-index: 31; }
.result-container .card:nth-of-type(3) { z-index: 32; }
.result-container .card:nth-of-type(4) { z-index: 33; }
.result-container .card:nth-of-type(5) { z-index: 34; }
.result-container .card:nth-of-type(6) { z-index: 35; }

.result-container .best-records {
    width: 95%;
    margin: 0px auto;
}

/* ===== 종합 순위 (Competition Ranking Results) ===== */
.ranking-division {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.ranking-division:last-child {
    margin-bottom: 0;
}

.division-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
}

.division-title .material-symbols-outlined {
    font-size: 22px;
    color: #1a73e8;
}

/* 시상대 스타일 카드 레이아웃 */
.ranking-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    padding: 10px 0 20px;
}

.podium-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    min-width: 120px;
    flex: 1;
    max-width: 180px;
}

.podium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 종합우승 (1위) - 가운데, 가장 크게 */
.podium-card.rank-1 {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4cc 50%, #ffecb3 100%);
    border: 2px solid #ffd700;
    padding: 24px 20px 24px;
    min-height: 200px;
    order: 2;
    z-index: 2;
}

.podium-card.rank-1 .podium-team {
    font-size: 18px;
}

.podium-card.rank-1 .rank-medal {
    font-size: 36px;
}

/* 준우승 (2위) - 왼쪽 */
.podium-card.rank-2 {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #eeeeee 100%);
    border: 2px solid #c0c0c0;
    min-height: 170px;
    order: 1;
}

.podium-card.rank-2 .rank-medal {
    font-size: 30px;
}

/* 3위 - 오른쪽 */
.podium-card.rank-3 {
    background: linear-gradient(135deg, #fdf5ef 0%, #faeee4 50%, #f5e6d8 100%);
    border: 2px solid #cd7f32;
    min-height: 150px;
    order: 3;
}

.podium-card.rank-3 .rank-medal {
    font-size: 28px;
}

/* 왕관 */
.podium-crown {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 4px;
    animation: crown-bounce 2s ease-in-out infinite;
}

@keyframes crown-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* 순위 표시 */
.podium-rank {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.rank-medal {
    line-height: 1;
}

.rank-label {
    font-size: 12px;
    font-weight: 600;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.podium-card.rank-1 .rank-label {
    color: #b8860b;
    font-size: 13px;
}

/* 팀명 */
.podium-team {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 12px;
    word-break: keep-all;
    line-height: 1.3;
}

/* 메달 현황 */
.podium-medals {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
}

.medal-item {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.medal-item.gold { color: #b8860b; }
.medal-item.silver { color: #71706e; }
.medal-item.bronze { color: #a0522d; }

/* 반응형 - 태블릿 */
@media (max-width: 768px) {
    .ranking-podium {
        gap: 8px;
        padding: 10px 0 16px;
    }

    .podium-card {
        padding: 16px 12px;
        min-width: 100px;
    }

    .podium-card.rank-1 {
        padding: 20px 14px;
        min-height: 180px;
    }

    .podium-card.rank-1 .podium-team {
        font-size: 16px;
    }

    .podium-card.rank-1 .rank-medal {
        font-size: 32px;
    }

    .podium-card.rank-2 {
        min-height: 155px;
    }

    .podium-card.rank-3 {
        min-height: 140px;
    }

    .podium-team {
        font-size: 14px;
    }

    .podium-medals {
        gap: 6px;
    }

    .medal-item {
        font-size: 12px;
    }
}

/* 반응형 - 모바일 */
@media (max-width: 480px) {
    .ranking-division {
        padding: 16px 12px;
    }

    .division-title {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .ranking-podium {
        gap: 6px;
        padding: 8px 0 12px;
    }

    .podium-card {
        padding: 12px 8px;
        min-width: 85px;
        border-radius: 12px;
    }

    .podium-card.rank-1 {
        padding: 16px 10px;
        min-height: 120px;
    }

    .podium-card.rank-1 .podium-team {
        font-size: 14px;
        margin-bottom: 0;
    }

    .podium-card.rank-1 .rank-medal {
        font-size: 28px;
    }

    .podium-card.rank-2 {
        min-height: 105px;
    }

    .podium-card.rank-2 .rank-medal {
        font-size: 24px;
    }

    .podium-card.rank-3 {
        min-height: 95px;
    }

    .podium-card.rank-3 .rank-medal {
        font-size: 22px;
    }

    .podium-crown {
        font-size: 22px;
    }

    .rank-label {
        font-size: 10px;
    }

    .podium-card.rank-1 .rank-label {
        font-size: 11px;
    }

    .podium-team {
        font-size: 12px;
        margin-bottom: 0;
    }

    /* 모바일에서 메달 집계 숨김 */
    .podium-medals {
        display: none;
    }
}

/* 매우 작은 화면 */
@media (max-width: 360px) {
    .ranking-podium {
        gap: 4px;
    }

    .podium-card {
        min-width: 75px;
        padding: 10px 6px;
    }

    .podium-card.rank-1 {
        min-height: 110px;
        padding: 14px 8px;
    }

    .podium-card.rank-2 {
        min-height: 95px;
    }

    .podium-card.rank-3 {
        min-height: 85px;
    }

    .podium-team {
        font-size: 11px;
    }
}

/* ===== 순위 예측 (Ranking Prediction) ===== */
.prediction-card {
    border: 2px solid #1a73e8;
    background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
}

.prediction-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-save-img {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #1a73e8;
    background: #e8f0fe;
    border: 1px solid #1a73e8;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-save-img:hover { background: #d2e3fc; }
.btn-save-img:disabled { opacity: 0.6; cursor: not-allowed; }

.prediction-badge {
    background: #ea4335;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* D-day 뱃지 (대회 헤더용) */
.dday-badge {
    display: inline-block;
    background: #ea4335;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

.prediction-desc {
    color: #5f6368;
    font-size: 14px;
    margin-bottom: 20px;
}

.prediction-form.compact {
    padding: 0;
    border: none;
    background: transparent;
}

.prediction-form.compact .prediction-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.prediction-form.compact select {
    flex: 1;
    min-width: 70px;
    max-width: 100px;
    padding: 8px 10px;
    border: 1px solid #dadce0;
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
}

.prediction-form.compact select:focus {
    outline: none;
    border-color: #1a73e8;
}

.prediction-form.compact .record-input-group {
    display: flex;
    align-items: center;
    gap: 2px;
}

.prediction-form.compact .record-input-group input {
    width: 36px;
    padding: 8px 4px;
    border: 1px solid #dadce0;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
}

.prediction-form.compact .record-input-group input:focus {
    outline: none;
    border-color: #1a73e8;
}

.prediction-form.compact .record-input-group span {
    font-size: 14px;
    font-weight: 600;
    color: #5f6368;
}

.prediction-form.compact .btn {
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
}

.prediction-form.compact .btn .material-symbols-outlined {
    font-size: 16px;
}

/* 기존 스타일 유지 (호환성) */
.prediction-form:not(.compact) {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e0e0;
}

.prediction-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.prediction-row:last-child {
    margin-bottom: 0;
}

.prediction-field {
    flex: 1;
    min-width: 0;
}

.prediction-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #5f6368;
    margin-bottom: 6px;
}

.prediction-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.prediction-field select:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.prediction-field.record-input {
    flex: 1.5;
}

.record-input-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.record-input-group input {
    width: 50px;
    padding: 10px 8px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

.record-input-group input:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.record-input-group span {
    font-size: 16px;
    font-weight: 600;
    color: #5f6368;
}

.prediction-actions {
    margin-top: 20px;
    text-align: center;
}

.prediction-actions .btn {
    padding: 12px 32px;
    font-size: 15px;
}

/* 예측 결과 */
.prediction-result {
    margin-top: 24px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.prediction-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border: 2px solid #4caf50;
    margin-bottom: 16px;
}

.prediction-summary.rank-gold {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4cc 100%);
    border-color: #ffd700;
}

.prediction-summary.rank-silver {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    border-color: #c0c0c0;
}

.prediction-summary.rank-bronze {
    background: linear-gradient(135deg, #fdf5ef 0%, #f5ebe0 100%);
    border-color: #cd7f32;
}

.prediction-rank {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rank-icon {
    font-size: 40px;
    line-height: 1;
}

.rank-icon .rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #1a73e8;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.rank-text {
    display: flex;
    flex-direction: column;
}

.rank-text .rank-label {
    font-size: 12px;
    color: #5f6368;
}

.rank-text .rank-value {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.prediction-stats {
    display: flex;
    gap: 24px;
}

.prediction-stats .stat-item {
    text-align: center;
}

.prediction-stats .stat-label {
    display: block;
    font-size: 11px;
    color: #5f6368;
    margin-bottom: 4px;
}

.prediction-stats .stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.prediction-event {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 20px;
}

.prediction-event .material-symbols-outlined {
    font-size: 20px;
    color: #1a73e8;
}

/* 근접 기록 테이블 */
.nearby-records {
    margin-bottom: 20px;
}

.nearby-records h5,
.recent-comps h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.nearby-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    table-layout: fixed;
}

.nearby-table th,
.nearby-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.nearby-table th:nth-child(1),
.nearby-table td:nth-child(1) {
    width: 20%;
}

.nearby-table th:nth-child(2),
.nearby-table td:nth-child(2) {
    width: 20%;
}

.nearby-table th:nth-child(3),
.nearby-table td:nth-child(3) {
    width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nearby-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #5f6368;
}

.nearby-table tr.highlight {
    background: #e3f2fd;
}

.nearby-table tr.highlight td {
    color: #1a73e8;
}

/* 최근 대회 */
.recent-comps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-comps li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.recent-comps li:last-child {
    border-bottom: none;
}

.recent-comps .comp-name {
    font-weight: 500;
    color: #1a1a1a;
}

.recent-comps .comp-info {
    font-size: 12px;
    color: #5f6368;
}

.prediction-note {
    font-size: 12px;
    color: #9e9e9e;
    text-align: center;
    margin: 16px 0 0 0;
}

.prediction-error,
.prediction-no-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    color: #5f6368;
}

.prediction-error .material-symbols-outlined {
    font-size: 40px;
    color: #ea4335;
}

.prediction-no-data .material-symbols-outlined {
    font-size: 40px;
    color: #fbbc04;
}

/* 로딩 애니메이션 */
@keyframes rotating {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotating {
    animation: rotating 1s linear infinite;
}

/* 반응형 - 태블릿 */
@media (max-width: 768px) {
    .prediction-form.compact .prediction-row {
        gap: 6px;
    }

    .prediction-form.compact select {
        min-width: 60px;
        max-width: 85px;
        padding: 7px 8px;
        font-size: 12px;
    }

    .prediction-form.compact .record-input-group input {
        width: 32px;
        padding: 7px 3px;
        font-size: 12px;
    }

    .prediction-form.compact .btn {
        padding: 7px 10px;
        font-size: 12px;
    }

    .prediction-row {
        flex-wrap: wrap;
    }

    .prediction-field {
        flex: 1 1 calc(50% - 6px);
    }

    .prediction-field.record-input {
        flex: 1 1 100%;
    }

    .prediction-summary {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .prediction-stats {
        width: 100%;
        justify-content: space-around;
    }
}

/* 반응형 - 모바일 */
@media (max-width: 480px) {
    .prediction-form.compact .prediction-row {
        gap: 5px;
    }

    .prediction-form.compact select {
        min-width: 55px;
        max-width: 70px;
        padding: 6px 5px;
        font-size: 11px;
    }

    .prediction-form.compact .record-input-group {
        gap: 1px;
    }

    .prediction-form.compact .record-input-group input {
        width: 28px;
        padding: 6px 2px;
        font-size: 11px;
    }

    .prediction-form.compact .record-input-group span {
        font-size: 12px;
    }

    .prediction-form.compact .btn {
        padding: 6px 8px;
        font-size: 11px;
    }

    .prediction-form.compact .btn .material-symbols-outlined {
        font-size: 14px;
    }

    .prediction-form:not(.compact) {
        padding: 16px;
    }

    .prediction-field {
        flex: 1 1 100%;
    }

    .prediction-row {
        gap: 10px;
    }

    .record-input-group input {
        width: 45px;
        padding: 8px 6px;
    }

    .prediction-stats {
        gap: 16px;
    }

    .prediction-stats .stat-value {
        font-size: 14px;
    }

    .rank-text .rank-value {
        font-size: 20px;
    }

    .rank-icon {
        font-size: 32px;
    }

    .rank-icon .rank-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .nearby-table th,
    .nearby-table td {
        padding: 8px;
        font-size: 12px;
    }

    .recent-comps li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* 연도별 예상 순위 테이블 */
.yearly-rank-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-top: 8px;
}

.yearly-rank-table th,
.yearly-rank-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.yearly-rank-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #5f6368;
    font-size: 12px;
}

.yearly-rank-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.yearly-rank-table .rank-cell {
    font-weight: 700;
}

.yearly-rank-table .rank-cell.top3 {
    color: #1a73e8;
    font-size: 16px;
}

/* 평균 순위 정보 */
.avg-rank-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #e8f5e9;
    border-radius: 8px;
    font-size: 14px;
    color: #2e7d32;
    margin-bottom: 16px;
}

.avg-rank-info .material-symbols-outlined {
    font-size: 20px;
}

/* 예측 기준 정보 */
.prediction-based {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #9e9e9e;
    margin-bottom: 16px;
}

.prediction-based .material-symbols-outlined {
    font-size: 16px;
}

/* 반응형 - 연도별 테이블 */
@media (max-width: 480px) {
    .yearly-rank-table th,
    .yearly-rank-table td {
        padding: 8px 4px;
        font-size: 11px;
    }

    .yearly-rank-table .rank-cell.top3 {
        font-size: 14px;
    }

    .avg-rank-info {
        font-size: 13px;
        padding: 10px 12px;
    }
}

/* 확률 예측 섹션 */
.probability-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.probability-section h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.probability-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prob-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prob-rank {
    font-size: 14px;
    font-weight: 500;
    min-width: 55px;
}

.prob-bar-wrapper {
    flex: 1;
    height: 24px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.prob-bar {
    height: 100%;
    border-radius: 12px;
    transition: width 0.5s ease;
}

.prob-bar.gold {
    background: linear-gradient(90deg, #ffd700 0%, #ffec8b 100%);
}

.prob-bar.silver {
    background: linear-gradient(90deg, #c0c0c0 0%, #e8e8e8 100%);
}

.prob-bar.bronze {
    background: linear-gradient(90deg, #cd7f32 0%, #daa06d 100%);
}

.prob-bar.other {
    background: linear-gradient(90deg, #6b7280 0%, #9ca3af 100%);
}

.prob-value {
    font-size: 14px;
    font-weight: 600;
    min-width: 45px;
    text-align: right;
    color: #5f6368;
}

.prob-value.high {
    color: #1a73e8;
    font-size: 16px;
}

.prob-note {
    font-size: 11px;
    color: #9e9e9e;
    margin: 10px 0 0 0;
    text-align: right;
}

/* 순위 확률 표시 */
.rank-prob {
    font-size: 12px;
    color: #1a73e8;
    font-weight: 500;
}

/* 반응형 */
@media (max-width: 480px) {
    .probability-section {
        padding: 12px;
    }

    .prob-rank {
        font-size: 12px;
        min-width: 45px;
    }

    .prob-bar-wrapper {
        height: 20px;
    }

    .prob-value {
        font-size: 12px;
        min-width: 40px;
    }

    .prob-value.high {
        font-size: 14px;
    }
}

/* 지난 회차별 대회 섹션 */
.series-competitions-section {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.series-competitions-section .section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8eaed;
}

.series-competitions-section .section-title .material-symbols-outlined {
    font-size: 20px;
    color: #5f6368;
}

.series-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.series-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.series-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a73e8;
    cursor: pointer;
    transition: color 0.2s ease;
}

.series-name:hover {
    color: #1557b0;
    text-decoration: underline;
}

.series-date {
    font-size: 13px;
    color: #5f6368;
}

@media (max-width: 480px) {
    .series-competitions-section {
        padding: 16px;
        margin-top: 16px;
    }

    .series-item {
        padding: 10px 12px;
    }

    .series-name {
        font-size: 13px;
    }

    .series-date {
        font-size: 12px;
    }
}
