﻿/* ===== Gmarket Sans – 여러 스타일 TTF만 사용 ===== */

/* ===== 1. 폰트 설정 (Gmarket Sans Light/Medium/Bold + Pretendard + Noto Sans KR) ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

@font-face {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/Pretendard-Regular.woff2') format('woff2');
}

/* ===== 2. 전역 기본 폰트 및 색상 ===== */
body {
    font-family: "Pretendard", "Noto Sans KR", "Gmarket Sans", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    margin: 0;
    padding: 0;
    color: #2c2c2c;
    background-color: #fff;
}

/* 폰트 굵기 클래스 */
.font-light {
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-weight: 300;
}

.font-medium {
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-weight: 400;
}

.font-bold {
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-weight: 700;
}


/* ===== 3. 상단 메뉴 ===== */

.top-bar {
    position: relative;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    background: #2c3e50;
    padding: 0 20px;
}

.logo a,
.logo a:hover,
.logo a:focus,
.logo a:active {
    color: white !important;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    line-height: 70px;
}

.menu-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-area {
    position: relative;
}

/* 상위 메뉴 */
.menu {
    display: flex;
    justify-content: center;
    gap: 70px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 70px;
    align-items: center;
}

    .menu li {
        color: white;
        font-weight: 500; /* 700 → 500으로 부드럽게 */
        font-size: 17px; /* 18 → 17px로 조금 더 세련되게 */
        cursor: pointer;
    }

/* 서브메뉴 전체 영역 */
.submenu-area {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.97);
    z-index: 1100;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease;
}

.menu-area:hover .submenu-area {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}

/* 서브메뉴 컬럼 */
.submenu-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .submenu-col h4, .submenu-col h5 {
        color: #ffffcc;
        font-weight: 500;
        margin-bottom: 6px;
    }

    .submenu-col a {
        color: #ddd;
        text-decoration: none;
        font-size: 14px;
    }

        .submenu-col a:hover {
            color: #fff;
        }

/* 로그인 */
.login a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* 서브메뉴 안쪽 레이아웃 */
.submenu-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-around;
}


/* ===== 4. 메인 비주얼 캐러셀 ===== */

.main-visual {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 1000px;
    overflow: hidden;
    background: #f8f4f0; /* 검은색 → 온화한 크림 계열 (Gmarket Sans + Pretendard와 잘 어울림) */
}

/* 각 슬라이드 공통 스타일 */
.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1) translateX(0) translateY(0);
    animation: visualFade 36s infinite ease-in-out;
}

.slide1 {
    background-image: url('/images/carousel/2026_1.webp');
    animation-delay: 0s;
}

.slide2 {
    background-image: url('/images/carousel/2026_2.webp');
    animation-delay: 6s;
}

.slide3 {
    background-image: url('/images/carousel/2026_3.webp');
    animation-delay: 12s;
}

.slide4 {
    background-image: url('/images/carousel/2026_4.webp');
    animation-delay: 18s;
}

.slide5 {
    background-image: url('/images/carousel/2026_5.webp');
    animation-delay: 24s;
}

.slide6 {
    background-image: url('/images/carousel/2026_6.webp');
    animation-delay: 30s;
}



/* 오버레이 문구 */
.visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    color: #f8f4f0;
    text-align: center;
    pointer-events: none;
}

    /* 제목 */
    .visual-overlay h1 {
        margin: 0 0 10px 0;
        font-family: "Gmarket Sans", "Pretendard", sans-serif;
        font-weight: 700;
        font-size: 52px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }

    /* 부제목 */
    .visual-overlay p {
        margin: 20px 0 0 0;
        font-family: "Gmarket Sans", "Pretendard", sans-serif;
        font-weight: 300;
        font-size: 36px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    }

/* 캐러셀 페이드 + 애니메이션 */
@keyframes visualFade {
    0% {
        opacity: 0;
    }

    3% {
        opacity: 1;
    }

    14% {
        opacity: 1;
    }

    17% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* 하단 캐러셀(필요 시 사용) */
.carousel {
    background-color: #f8f4f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

    .carousel-item.active {
        opacity: 1;
    }

/* ===== 글자 간격(자간) 클래스 ===== */

/* 기본 가까운 간격 */
.text-tighter {
    letter-spacing: -0.05em;
}

/* 조금 넓은 간격 (배너 제목용) */
.text-tight {
    letter-spacing: -0.02em;
}

/* 기본 자간 */
.text-normal {
    letter-spacing: 0.01em;
}

/* 다소 넓은 자간 */
.text-loose {
    letter-spacing: 0.08em;
}

/* 넓게 띄운 헤드라인용 */
.text-wider {
    letter-spacing: 0.1em;
}

/* 넓게 띄운 헤드라인용 */
.text-morewider {
    letter-spacing: 0.12em;
}

.main-title {
    font-size: 5rem; /* 제목 크게 */
    line-height: 1.1;
}

.sub-title {
    font-size: 2rem; /* 부제 크게 */
    margin-top: 10px;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.8rem;
    }

    .sub-title {
        font-size: 1.3rem;
    }
}

.home-wrap {
    width: 100%;
    max-width: 1680px; /* 1280 → 1680 */
    margin: 0 auto;
    padding: 60px 40px 80px;
}

/* 3칸 카드 */
.quick-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px; /* 24 → 36 */
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.quick-card {
    display: block;
    min-height: 210px;
    padding: 34px 28px;
    background: #fff;
    border-radius: 22px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-top: 5px solid #2c3e50;
}

    .quick-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    }

.quick-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.quick-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
}

.quick-card p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.quick-card span {
    display: inline-block;
    font-weight: 700;
    color: #0d6efd;
}

/* 공통 섹션 */
.home-section {
    margin-top: 70px;
}

.home-section,
.quick-section {
    width: 100%;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 14px;
}

    .section-title h2 {
        margin: 0;
        font-size: 30px;
        font-weight: 800;
        color: #2c3e50;
    }

    .section-title a {
        text-decoration: none;
        color: #555;
        font-weight: 700;
    }

/* 경기일정 */
.schedule-box {
    display: grid;
    gap: 16px;
}

.schedule-item {
    display: flex;
    align-items: center;
    background: #f8f9fb;
    border: 1px solid #e4e7eb;
    border-radius: 22px;
    padding: 28px 34px; /* 더 넓게 */
    transition: background 0.2s ease;
}

    .schedule-item:hover {
        background: #eef4fa;
    }

.schedule-date {
    width: 120px;
    text-align: center;
    border-right: 1px solid #d6dbe0;
    margin-right: 28px;
}

    .schedule-date strong {
        display: block;
        font-size: 22px;
        color: #2c3e50;
    }

    .schedule-date span {
        display: block;
        margin-top: 6px;
        font-size: 15px;
        color: #777;
    }

.schedule-info h4 {
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 800;
}

.schedule-info p {
    margin: 0;
    color: #666;
}

/* 갤러리 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px; /* 24 → 36 */
}

.gallery-card {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

    .gallery-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.08);
    }

    .gallery-card p {
        margin: 0;
        padding: 18px 20px;
        font-size: 18px;
        font-weight: 700;
        color: #2c3e50;
    }

/* =========================
   Footer
========================= */

.main-footer {
    background: #2f2f2f;
    padding: 28px 20px;
    color: #999;
}

.footer-inner {
    max-width: 1680px;
    margin: 0 auto;
    text-align: center; /* 가운데 정렬 */
}

/* 상단 링크 */
.footer-links {
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 500;
}

    .footer-links a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: #ffd400;
        }

    .footer-links span {
        margin: 0 10px;
        color: #777;
    }

/* 주소 */
.footer-address {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* 카피라이트 */
.footer-copy {
    color: #666;
    font-size: 14px;
    letter-spacing: 0.03em;
}

/* 반응형 */
@media (max-width: 992px) {
    .quick-section, .gallery-grid {
        grid-template-columns: 1fr;
    }

    .quick-section {
        margin-top: -80px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-right {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .home-wrap {
        padding: 40px 16px 60px;
    }

    .schedule-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .schedule-date {
        width: 100%;
        text-align: left;
        border-right: 0;
        border-bottom: 1px solid #d6dbe0;
        margin-right: 0;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    .gallery-card img {
        height: 200px;
    }
}

/* =========================
   Loading Overlay
========================= */

.loading-wrap {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(4px);
}

/* 회전 원형 */
.loader {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 6px solid rgba(44, 62, 80, 0.12);
    border-top: 6px solid #2c3e50;
    border-right: 6px solid #0d6efd;
    animation: spinLoader 1s linear infinite;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    margin-bottom: 28px;
}

/* 텍스트 */
.loading-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.08em;
    animation: fadeText 1.6s ease-in-out infinite;
}

/* 점 애니메이션 */
.loading-dots::after {
    content: "";
    animation: dots 1.5s infinite;
}

/* 원형 회전 */
@keyframes spinLoader {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.05);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* 텍스트 깜빡임 */
@keyframes fadeText {
    0% {
        opacity: 0.4;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-2px);
    }

    100% {
        opacity: 0.4;
        transform: translateY(0);
    }
}

/* 점점점 */
@keyframes dots {
    0% {
        content: "";
    }

    33% {
        content: ".";
    }

    66% {
        content: "..";
    }

    100% {
        content: "...";
    }
}

/* -END-  Loading Overlay */

.login {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    white-space: nowrap;
}

.login-welcome {
    color: white !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.logout-btn {
    border: 1px solid rgba(255,255,255,0.6);
    background: transparent;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

    .logout-btn:hover {
        background: #fff;
        color: #2c3e50 !important;
    }

.logBtn {
    width: 100%;
    height: 52px;
    padding: 0 !important;
    margin: 0;
    border: 0;
    border-radius: 8px;
    background: #0d6efd;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
}

.logBtnText {
    width: 100%;
    height: 52px;
    line-height: 52px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    transform: translateY(-2px); /* 필요하면 -1~-4px 조정 */
}

.logBtn:hover {
    background: #0b5ed7;
}

/* 서브 페이지 일정 너비 유지 */
.member-wrap {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0px 40px 80px;
}

.page-container {
    width: 100%;
    align-items: flex-start;
    gap: 32px;
}

.content-area {
    min-width: 0;
    background: #fff;
}

.content-center-wrap {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* 사이드바 */
.side-nav {
    width: 250px;
    min-width: 250px;
    min-height: 520px;
    background: linear-gradient(180deg, #24384d 0%, #2c3e50 45%, #1f2d3a 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.12);
}

    .side-nav .nav-title {
        padding: 20px 18px;
        background: linear-gradient(135deg, #0d6efd, #2c7be5);
        color: #fff;
        font-size: 21px;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0.04em;
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }

    .side-nav .nav-list {
        list-style: none;
        margin: 0;
        padding: 14px 10px 18px;
    }

        .side-nav .nav-list > li {
            margin-bottom: 6px;
        }

            .side-nav .nav-list > li > a,
            .side-nav .nav-list > li > .nav-link,
            .side-nav .nav-list > li > button {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                padding: 13px 16px;
                border: 0;
                border-radius: 12px;
                background: rgba(255,255,255,0.06);
                color: #f4f7fb;
                text-decoration: none;
                font-size: 15px;
                font-weight: 700;
                text-align: left;
            }

                .side-nav .nav-list > li > a:hover,
                .side-nav .nav-list > li > .nav-link:hover,
                .side-nav .nav-list > li > button:hover {
                    background: rgba(255,255,255,0.16);
                    transform: translateX(3px);
                }

        .side-nav .nav-list a.active {
            background: #ffffff;
            color: #2c3e50;
            box-shadow: 0 6px 18px rgba(0,0,0,0.16);
        }

.toggle-icon {
    font-size: 0.75rem;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .member-wrap {
        padding: 0px 16px 60px;
    }

    .page-container {
        display: block !important;
    }
}

/* =========================
   Sidebar Sub Menu
========================= */

.side-nav .sub-nav {
    list-style: none;
    margin: 0;
    padding: 6px 0 8px 16px;
    display: none;
}

    .side-nav .sub-nav.open {
        display: block;
    }

    .side-nav .sub-nav li {
        margin-bottom: 4px;
    }

        /* 서브메뉴 링크 */
        .side-nav .sub-nav li a,
        .side-nav .sub-nav li .nav-link {
            display: block;
            width: 100%;
            padding: 8px 14px;
            border-radius: 8px;
            color: #ffffff !important;
            text-decoration: none !important;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

            /* hover */
            .side-nav .sub-nav li a:hover,
            .side-nav .sub-nav li .nav-link:hover {
                background: rgba(255,255,255,0.12);
                color: #ffd54f !important;
            }

            /* active */
            .side-nav .sub-nav li a.active,
            .side-nav .sub-nav li .nav-link.active {
                background: #0d6efd;
                color: #ffffff !important;
            }

/* 토글 버튼 */
.side-nav .nav-link-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 16px;
    border: 0;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .side-nav .nav-link-toggle:hover {
        background: rgba(255,255,255,0.16);
        transform: translateX(3px);
    }

/* 상단 배너 */
.sub-top-banner {
    width: 100%;
    text-align: center;
    background: #fff;
    overflow: hidden;
}

.sub-top-banner img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* footer */
.main-footer {
    margin-top: 60px;
    background: #1f2d3a;
    color: #dfe7ef;
    padding: 38px 20px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 18px;
    font-size: 14px;
}

    .footer-links a {
        color: #ffffff;
        text-decoration: none;
        margin: 0 6px;
    }

        .footer-links a:hover {
            color: #ffd54f;
        }

    .footer-links span {
        color: rgba(255,255,255,0.35);
    }

.footer-address {
    margin-bottom: 12px;
    font-size: 14px;
    color: #cfd8e3;
}

    .footer-address span {
        margin: 0 10px 0 10px;
    }

    .footer-copy {
        font-size: 13px;
        color: rgba(255,255,255,0.55);
        letter-spacing: 0.04em;
    }

/* =========================
   참가신청 안내 [START]
========================= */

.guide-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.guide-top {
    text-align: center;
    margin-bottom: 50px;
}

.guide-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: #0d6efd;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.guide-title {
    font-size: 42px;
    font-weight: 900;
    color: #1f2d3a;
    margin-bottom: 14px;
}

.guide-subtitle {
    font-size: 24px;
    color: #666;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* 태블릿 */
@media (max-width: 1100px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
}

.guide-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e8edf3;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
}

    .guide-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 36px rgba(0,0,0,0.10);
    }

.guide-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d6efd, #2c7be5);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    color: #1f2d3a;
}

.guide-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}
/* =========================
   참가신청 안내 [END]
========================= */


/* =========================
   종목별 대표자회의 [START]
========================= */
.meeting-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.meeting-top {
    text-align: center;
    margin-bottom: 40px;
}

.meeting-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: #0d6efd;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.meeting-top h1 {
    font-size: 40px;
    font-weight: 900;
    color: #1f2d3a;
    margin-bottom: 12px;
}

.meeting-top p {
    font-size: 17px;
    color: #666;
}

.meeting-table-box {
    overflow-x: auto;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    background: #fff;
}

.meeting-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

    .meeting-table thead th {
        background: #24384d;
        color: #fff;
        padding: 16px 12px;
        text-align: center;
        font-size: 16px;
    }

    .meeting-table tbody td {
        padding: 14px 12px;
        border-bottom: 1px solid #e5eaf0;
        text-align: center;
        font-size: 15px;
    }

    .meeting-table tbody tr:hover {
        background: #f5f9ff;
    }

    .meeting-table .sport-name {
        font-weight: 800;
        color: #1f2d3a;
    }
/* =========================
   종목별 대표자회의 [END]
========================= */

/* 인쇄 */
@media print {
    /* 헤더용 선택자 */
    header,
    .header,
    .site-header,
    #header {
        display: none !important;
    }

    /* 푸터용 선택자 */
    footer,
    .footer,
    .site-footer,
    #footer {
        display: none !important;
    }

    /* 상하 여백을 줄여서 내용만 확대 */
    body {
        margin: 0 !important;
        padding: 0 !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
}

/* 종합득점 현황 [START] */
.result-page-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.result-filter-alert {
    width: 100%;
    padding: 28px;
    border-radius: 8px;
    background: #fff3cd;
    border: 1px solid #ffe08a;
}

.result-filter-box {
    width: 100%;
    max-width: 1200px;
    min-height: 90px;
    padding: 22px 24px;
    border: 1px solid #d8dee6;
    border-radius: 6px;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.badge-title {
    background: linear-gradient(135deg,#1e90ff,#2f6bff);
    color: #fff;
    border-radius: 999px;
    font-size: 1rem;
    white-space: nowrap;
}

.application-form {
    width: 100%;
}

.jonghap-title-box {
    text-align: center;
    margin-top: 28px;
    margin-bottom: 18px;
}

.jonghap-title {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}
/* 종합득점 현황 [END] */

/* 토스트 */
.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    min-width: 280px;
    padding: 14px 18px;
    background: #198754;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    font-weight: 600;
}

    .custom-toast button {
        float: right;
        margin-left: 15px;
        background: none;
        border: 0;
        color: white;
        font-size: 20px;
    }