/**
 * Map Loading Indicator Styles
 * Full-screen loading overlay shown during map updates
 */

/* Map Loading Indicator */
.map-loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10003;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.map-loading-indicator.show {
    display: flex;
}

.map-loading-content {
    background: white;
    border-radius: 16px;
    padding: 2rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.map-loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--christmas-red);
    border-right: 4px solid var(--christmas-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.map-loading-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

@media (max-width: 576px) {
    .map-loading-content {
        padding: 1.5rem 2rem;
    }
    
    .map-loading-spinner {
        width: 40px;
        height: 40px;
    }
    
    .map-loading-text {
        font-size: 1rem;
    }
}