.map-layout {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
    .map-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        order: -1;
    }
}

.map-container {
    flex: 1;
    min-height: 600px;
    position: relative;
    width: 100%;
}

#company-map {
    height: 600px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.sidebar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 16px;
    width: 350px;
}

.sidebar label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.sidebar select {
    width: 100%;
    padding: 6px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.company-professions {
    margin-bottom: 16px;
}

.plugin-clear_button .clear-button {
    font-size: 24px;
}
