.location-wrapper {
    background: #1A5349;
    padding-top: 40px;
    padding-bottom: 40px;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

.search-area {
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
}

.search-form-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hih-custom-button {
    position: relative;
    margin: 0;
    border-radius: 0 14px 14px 0;
    border: 1px solid #fff;
    height: 50px;
    color: #1A5349;
    text-transform: uppercase;
    background: #fff;
    font-weight: 600;
    font-size: 13px;
}

.custom-form-control {
    height: 50px;
    border-radius: 14px 0 0 14px!important;
    border: none!important;
}

.search-area-title {
    font-family: "Baloo 2", sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}
.content-wrapper { display: flex; gap: 20px; margin-top: 50px; margin-bottom: 50px; z-index: 1; position: relative;}
.centers-list { 
    width: 50%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.childcare-map { width: 50%; min-height: 500px;}

.centre-location-img {
    width: 250px; 
    height: 250px;
    flex-shrink: 0;
    overflow: hidden;
}
.centre-location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures uniform size without distortion */
}

.centre-list {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.centre-list:hover {
    background-color: #EDE0F7;
}

.centre-list.active {
    background-color: #EDE0F7;
    border-left: 4px solid #16A5B4;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 786px) {
  .search-area {
  	max-width: 100%;
   }
   .content-wrapper {
   	flex-direction: column;
   }
   .centers-list {
   	width: 100%;
    min-height: 100px;
   }
   #childcare-map {
   width: 100%
   }
    .centre-location-img {
        width: 80px;
        height: 80px;
    }
}