
.containerdiv {
    display: flex;
    align-items: flex-start;
}

.map-container {
    width: 100%;
}

svg {
    width: 100%;
    height: 675px;
    display: block;
}

.district {
    fill: #d1d1d1;
    stroke: #ffffff;
    stroke-width: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.district:hover {
    fill: #ff9800;
}

.district.active {
    fill: #e91e63;
}

select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
}

.districtimg {
    width: 100%;
    height: 75px;
    object-fit: cover;
    margin-bottom: 10px;
}



.search-item {
    padding: 6px;
    cursor: pointer;
}
.search-item:hover {
    background: #eee;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .containerdiv {
        flex-direction: column;
    }
    .info-panel {
        width: 100%;
        height: 40%;
    }
    .map-container {
        width: 100%;
        height: 60%;
    }
}

