/* Fallback Map Styles */
.map-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 16px;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}

.map-fallback.hidden {
    display: none;
}

.fallback-content {
    text-align: center;
    padding: 30px;
}

.fallback-icon {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.fallback-content p {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 600;
}

.fallback-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-gradient);
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(249, 134, 82, 0.3);
}

.fallback-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 134, 82, 0.4);
}

.fallback-note {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    margin-top: 20px !important;
    font-weight: 400 !important;
    opacity: 0.7;
}