* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard', 'Malgun Gothic', sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#map {
    height: 100%;
    width: 100%;
    background-color: #e5e3df; /* 맵 로딩 전 배경색 */
}

/* 좌측 상단 정보 패널 */
#info-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 10;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    backdrop-filter: blur(5px);
}

#info-panel.hidden {
    transform: translateX(-150%);
    opacity: 0;
}

#close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    line-height: 1;
}

#close-btn:hover {
    color: #333;
}

#country-name {
    font-size: 26px;
    color: #2c3e50;
    margin-right: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
    display: inline-block;
}

#country-flag {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.flower-info {
    font-size: 18px;
    color: #444;
    background-color: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin-top: 5px;
}

.flower-info .icon {
    margin-right: 5px;
}

/* 지도 위 InfoWindow 스타일링 (Google Maps 기본 팝업용) */
.gm-style .gm-style-iw-c {
    padding: 15px !important;
    border-radius: 12px !important;
}

.map-popup-content {
    text-align: center;
    min-width: 150px;
}
.map-popup-content h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
}
.map-popup-content img {
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}
.map-popup-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
}