/* 地圖容器 */
#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 自訂標記樣式 */
.custom-marker {
    background: none;
    border: none;
}

.marker-icon {
    font-size: 32px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
}

.marker-icon:hover {
    transform: scale(1.2);
}

/* 完成任務的標記 */
.marker-completed {
    font-size: 36px;
    animation: bounce 0.5s;
}

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

/* Leaflet Popup 自訂樣式 */
.leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content {
    margin: 15px;
    font-family: 'Microsoft JhengHei', sans-serif;
}

.popup-title {
    font-size: 16px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.popup-description {
    font-size: 14px;
    color: #666;
}
