@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

@font-face {
    font-family: 'DosMyungjo';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-5@1.0/HakgyoansimByeolbichhaneulTTF-L.woff2') format('woff');
    font-weight: normal;
    font-display: swap;
}

:root {
    --primary-color: #0f172a;        /* 깊은 다크 네이비 */
    --primary-light: rgba(30, 41, 59, 0.65); /* 카드 및 아코디언 헤더 (글래스모피즘 반투명) */
    --primary-solid: rgba(51, 65, 85, 0.8);   /* 호버 요소 */
    --secondary-color: #a855f7;      /* 보라색 네온 */
    --secondary-light: #c084fc;      /* 밝은 보라 네온 */
    --accent-color: #38bdf8;         /* 스카이블루 네온 */
    --accent-light: #7dd3fc;         /* 밝은 스카이블루 */
    --bg-body: #0f172a;              /* 전체 페이지 배경 */
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --radius-lg: 16px;
    --radius-md: 10px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    
    /* 1, 2, 3위 메탈릭 매핑 */
    --gold: #fbbf24;
    --silver: #cbd5e1;
    --bronze: #f97316;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', 'Noto Sans KR', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(56, 189, 248, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 85%, rgba(168, 85, 247, 0.08) 0%, transparent 25%);
    background-attachment: fixed;
}

/* 킹수학 헤더 - 다크 보라 네온 스타일 */
.brand-header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 20px 20px 20px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.brand-header .logo-container {
    margin-bottom: 20px;
}

.brand-header .main-logo {
    height: 106px;
    margin-right: 16px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-bottom: -19px;
}

.brand-header .main-logo:hover {
    transform: scale(1.03);
}

.brand-header h1 {
    font-family: 'Poppins', 'Noto Sans KR', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.brand-header p {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.header-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* 프리미엄 버튼 - 보라색 네온 그라디언트 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--accent-color);
    color: #0f172a;
    font-weight: 800;
}

.btn-danger:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

.btn-edit {
    background: #4f46e5;
    color: white;
}

.btn-edit:hover {
    background: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}

.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ==================== A. INDEX PAGE STYLES (다크 글래스모피즘) ==================== */
.month-card {
    background: var(--primary-light);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.month-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(168, 85, 247, 0.25);
    background: rgba(30, 41, 59, 0.75);
}

.month-header {
    padding: 24px 30px;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.2s;
}

.month-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.month-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.month-badge {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.month-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
}

.month-game {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.month-game::before {
    content: "|";
    color: rgba(255, 255, 255, 0.15);
    margin-right: 15px;
}

.month-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: 20px;
}

.btn-mini {
    padding: 6px 14px !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
}

.btn-blue {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-blue:hover {
    background: var(--accent-color);
    color: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.toggle-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.month-card.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--secondary-light);
}

/* 우승자 리스트 세션 (다크) */
.winners-section {
    display: none;
    padding: 0 30px 30px 30px;
    background: rgba(15, 23, 42, 0.5);
    border-top: 1px solid var(--border-glass);
    animation: slideDown 0.3s ease-out forwards;
}

.month-card.active .winners-section {
    display: block;
}

.winners-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--border-glass);
    transition: all 0.2s ease;
}

.winner-item:hover {
    transform: translateX(5px);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

.winner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rank-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    background: #0f172a;
    color: var(--text-muted);
    border: 1px solid var(--border-glass);
}

/* 1위, 2위, 3위 메달 효과 (일관된 브랜드 네이비 뱃지와 개별 메탈릭 글로우) */
.winner-item-rank-1, .winner-item-rank-2, .winner-item-rank-3 {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1위 골드 */
.winner-item-rank-1 {
    border-left: 5px solid var(--gold);
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.08) 0%, rgba(30, 41, 59, 0.4) 100%);
}
.winner-item-rank-1 .rank-badge {
    background: #0f172a;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
    font-size: 1.15rem;
}

/* 2위 실버 */
.winner-item-rank-2 {
    border-left: 5px solid var(--silver);
    background: linear-gradient(90deg, rgba(203, 213, 225, 0.08) 0%, rgba(30, 41, 59, 0.4) 100%);
}
.winner-item-rank-2 .rank-badge {
    background: #0f172a;
    color: var(--silver);
    border: 2px solid var(--silver);
    box-shadow: 0 0 10px rgba(203, 213, 225, 0.5);
    font-size: 1.1rem;
}

/* 3위 브론즈 */
.winner-item-rank-3 {
    border-left: 5px solid var(--bronze);
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.08) 0%, rgba(30, 41, 59, 0.4) 100%);
}
.winner-item-rank-3 .rank-badge {
    background: #0f172a;
    color: #ffedd5;
    border: 2px solid var(--bronze);
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.5);
    font-size: 1.1rem;
}

.winner-school-info {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
}

.winner-school-info span {
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 10px;
    font-size: 0.95rem;
}

/* 다운로드 버튼 미니 */
.btn-download {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    border-radius: 6px;
}

.btn-download:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
}


/* ==================== B. MAP PAGE STYLES (다크 지도) ==================== */
.map-layout {
    display: flex;
    height: calc(100vh - 200px); /* 헤더 크기 반영 */
    position: relative;
    background: var(--bg-body);
}

.map-sidebar {
    width: 360px;
    background: #0f172a;
    border-right: 1px solid var(--border-glass);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.map-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-glass);
    background: #111827;
}

.map-sidebar-header h2 {
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 800;
}

.map-filter {
    margin-top: 12px;
}

.map-filter select {
    width: 100%;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-glass);
    background: rgba(30, 41, 59, 0.8);
    color: var(--text-main);
    outline: none;
    font-weight: 500;
}

.sidebar-winner-list {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.sidebar-winner-list::-webkit-scrollbar { width: 6px; }
.sidebar-winner-list::-webkit-scrollbar-track { background: transparent; }
.sidebar-winner-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

.sidebar-winner-card {
    padding: 14px;
    border-radius: var(--radius-md);
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-glass);
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-winner-card:hover {
    border-color: var(--secondary-color);
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-1px);
}

.sidebar-winner-card.active {
    background: rgba(168, 85, 247, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.sidebar-card-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.sidebar-card-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.map-container-wrapper {
    flex: 1;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
    background: #0b0e14;
}

/* 지도 팝업 커스텀 - 다크 스타일 */
.custom-leaflet-popup .leaflet-popup-content-wrapper {
    background: #111827 !important;
    color: var(--text-main) !important;
    border-radius: 12px;
    padding: 6px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-lg);
}

.custom-leaflet-popup .leaflet-popup-tip {
    background: #111827 !important;
    border: 1px solid var(--border-glass);
}

.custom-leaflet-popup .leaflet-popup-content {
    margin: 8px;
    font-family: 'Noto Sans KR', sans-serif;
}

.popup-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--secondary-light);
    margin-bottom: 4px;
}

.popup-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 모바일 전용 토글 버튼 */
.sidebar-toggle-btn {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1010;
    background: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}


/* ==================== C. ADMIN PAGE STYLES (다크) ==================== */
.admin-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-glass);
}

.admin-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.form-field input, .form-field select {
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid var(--border-glass);
    background: #0f172a;
    color: white;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-field input:focus, .form-field select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.3);
}

/* 관리자 4열 폼 그리드 (핵심 기능) */
.winner-row-header-grid {
    display: grid;
    grid-template-columns: 60px 3.5fr 2fr 3fr;
    gap: 12px;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
}

.winner-row-grid {
    display: grid;
    grid-template-columns: 60px 3.5fr 2fr 3fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
    background: #111827;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
}

.winner-row-grid.highlight {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.05) 0%, #111827 100%);
    border-left: 4px solid var(--gold);
}

.winner-row-grid select, .winner-row-grid input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid var(--border-glass);
    background: #0f172a;
    color: white;
    outline: none;
    font-size: 0.9rem;
}

.winner-row-grid select:focus, .winner-row-grid input:focus {
    border-color: var(--secondary-color);
}

.winner-row-grid .rank-num {
    font-weight: 800;
    color: var(--secondary-light);
    text-align: center;
}

.school-input-wrapper {
    position: relative;
    display: flex;
    gap: 4px;
}

.school-input-wrapper input {
    flex: 1;
}

.btn-search-coords {
    padding: 0 10px;
    background: var(--accent-color);
    color: #0f172a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
}

.btn-search-coords:hover {
    background: var(--accent-light);
}

/* 관리 목록 테이블 */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th, .admin-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-glass);
}

.admin-table th {
    background: #111827;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.9rem;
}

.admin-table td {
    font-size: 0.95rem;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* 로그인 폼 카드 */
.login-container {
    max-width: 420px;
    margin: 100px auto;
    padding: 0 20px;
}

.login-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px 30px;
    border: 1px solid var(--border-glass);
    text-align: center;
}

.login-card h2 {
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 800;
}

.login-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* 주소 및 좌표 찾기 모달 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(30, 41, 59, 0.9);
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: zoomIn 0.25s ease-out;
}

.modal-header {
    background: #111827;
    color: white;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
}

.modal-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 24px;
}

.search-box-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-box-row input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid var(--border-glass);
    background: #0f172a;
    color: white;
    outline: none;
}

.search-results {
    max-height: 180px;
    overflow-y: auto;
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    margin-bottom: 15px;
    background: #0f172a;
}

.search-item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.9rem;
    color: var(--text-main);
    transition: background 0.15s;
}

.search-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.search-item:last-child {
    border-bottom: none;
}

.search-no-results {
    padding: 15px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

#miniMap {
    width: 100%;
    height: 220px;
    border-radius: 6px;
    border: 1px solid var(--border-glass);
    margin-bottom: 15px;
}

.selected-coords-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: #111827;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-weight: 500;
}


/* ==================== D. ANIMATIONS ==================== */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ==================== E. RESPONSIVE MEDIA QUERIES ==================== */
@media (max-width: 900px) {
    .form-group-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .brand-header h1 {
        font-size: 1.8rem;
    }
    
    .month-header {
        position: relative;
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
    }
    
    .month-info {
        width: calc(100% - 30px);
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .month-game {
        margin-left: 0;
        width: 100%;
    }
    
    .month-game::before {
        display: none !important;
    }
    
    .month-actions {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-start;
        gap: 8px;
    }
    
    .toggle-icon {
        position: absolute;
        top: 24px;
        right: 20px;
    }
    
    .winners-section {
        padding: 0 20px 20px 20px;
    }
    
    .winners-list {
        grid-template-columns: 1fr;
    }
    
    .winner-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .btn-download {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .winner-row-header-grid {
        display: none;
    }
    
    .winner-row-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px;
    }
    
    .winner-row-grid .rank-num {
        text-align: left;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-glass);
        padding-bottom: 4px;
        margin-bottom: 4px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }
    
    .map-layout {
        flex-direction: column-reverse;
        height: calc(100vh - 120px);
    }
    
    .map-sidebar {
        width: 100%;
        height: 250px;
        position: absolute;
        bottom: 0;
        left: 0;
        transform: translateY(0);
        transition: transform 0.3s ease;
    }
    
    .map-sidebar.collapsed {
        transform: translateY(200px);
    }
    
    .sidebar-toggle-btn {
        display: flex;
    }
}
