#map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.marker-cluster {
    background: #1967d2;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.marker-district {
    background: #34a853;
}

.marker-city {
    background: #fbbc05;
    color: #333;
}

.job-info-window {
    max-width: 320px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.job-info-window .card {
    border-radius: 8px;
    overflow: hidden;
}

.job-info-window .list-group-item {
    border-left: none;
    border-right: none;
    position: relative;
}

.job-info-window .list-group-item:last-child {
    border-bottom: none;
}

.job-info-window .list-group-item:hover {
    background-color: rgba(0, 123, 255, 0.03);
}

.job-info-window a.fw-bold {
    color: #1967d2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.job-info-window .badge {
    font-weight: 500;
}

.map-page-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}


.content-column {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

@media (min-width: 992px) {
    .map-page-container {
        flex-direction: row;
    }

    .map-container {
        position: sticky;
        top: 0;
        height: 100vh;
    }
}

/* Bootstrap Icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css");

/* Responsive layout */
@media (max-width: 991px) {
    .map-layout {
        flex-direction: column;
    }

    .map-column {
        height: 400px;
        position: relative;
        top: auto;
        width: 100% !important;
    }

    .content-column {
        width: 100% !important;
    }
}
