/* Base styles for the page */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Sora', Arial, sans-serif;
    background-color: #f9f6ef;
}

/* Map container */
#map {
    height: 100%;
    width: 100%;
}

/* Visitor counter container */
.visitor-counter {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
    background: rgba(249, 246, 239, 0.70);
    padding: 8px 12px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    color: #2d5954;
    display: flex;
    align-items: center;
    gap: 2px;
    border-left: 3px solid #cea25d;
}

.visitor-label {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    color: #2d5954;
}

/* Loading overlay */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 246, 239, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

/* Loading spinner */
.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #dd3b00;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error message styling */
.error-message {
    background-color: #ffdddd;
    color: #751d0c;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

/* Hide mobile counter on desktop */
.visitor-counter-mobile {
    display: none;
} 