/* ==================== MAP PAGE ==================== */
.map-header {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.close-map-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

.map-container {
    height: calc(100vh - 150px);
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.map-placeholder p {
    color: var(--text-secondary);
    font-size: 18px;
}

.map-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.map-marker {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 3px solid var(--bg-primary);
    color: var(--bg-primary);
}

body.female-theme .map-marker {
    color: #ffffff;
}

.map-marker.full {
    background-color: var(--text-muted);
    top: 30%;
    left: 40%;
    font-size: 12px;
}

.map-marker.available {
    background-color: var(--accent-secondary);
}
