/**
 * Map page styles - container, controls, and display area.
 */

.map-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
}

.map-controls {
    flex-shrink: 0;
}

#mapDisplay {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
    background: var(--bs-tertiary-bg);
}

.map-placeholder {
    text-align: center;
    padding: 2rem;
}

.map-info {
    margin-bottom: 2rem;
}

.map-info h4 {
    margin-bottom: 0.5rem;
}

.map-coming-soon {
    padding: 2rem;
    border: 2px dashed var(--bs-border-color);
    border-radius: 0.5rem;
}
