
.map {
    height: 100vh;
}
@media (max-width: 768px) {
    .map {
        height: 375px;
    }
    
}

/* Loading Spinner Styles */
.loading-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    z-index: 10;
}

.loading-spinner.hidden {
    display: none;
}

/* Spinner Animation */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e3e3e3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading Text */
.loading-text {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hnt-map-wrap {
        height: 300px;
    }
    
    .spinner {
        width: 30px;
        height: 30px;
        border-width: 3px;
    }
    
    .loading-text {
        font-size: 12px;
    }
}