/* top-bar section Start*/
.top-bar {
    height: 40px;
    font-family: 'Poppins', sans-serif;
    color: #13765f;
}

.top-bar i {
    font-size: 18px;
}

.top-bar a {
    color: #13765f;
}

.shop {
    height: 100%;
}

.shop:hover {
    background-color: #D3F2E9;
}

/* top-bar section End*/

/* Brands top section Start */
.brands {
    font-family: 'Poppins', sans-serif;
    background-color: #13765f;
}

.brands-container {
    color: white;
}

/* Brands top section End */

/* Responsive */
@media (max-width: 768px) {
    .top-bar i {
        font-size: 14px;
    }

    .top-bar a {
        font-size: 12px;
    }

    .brands-list {
        width: 100%;
        display: flex;
        justify-content: space-around;
        font-size: 14px;
    }
}

/* Repair Status Start */

form .search-bar {
    flex: 1;
    display: flex;
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid #000;
}

.search-bar .search-input {
    font-size: 18px;
    flex: 1;
    border: none;
    padding: 0 35px;
}

.search-bar .search-input::placeholder {
    color: rgb(148, 148, 148);
}

.search-bar:focus-within {
    outline: none;
    box-shadow: 1px 1px 20px #026bc9;
}

.search-bar .search-input:focus {
    outline: none;
}

.search-bar .search-btn {
    font-size: 28px;
    padding: 15px 55px;
    background: linear-gradient(90deg, #026bc9 0, #1caf51);
    color: white;
    border: none;
}


/* Responsive */

@media (max-width: 768px) {
    .search-bar .search-input {
        font-size: 12px;
        padding: 0 10px;
    }
    .search-bar .search-btn {
    font-size: 16px;
    padding: 10px 25px;
}
}

/* Repair Status End */

/* Service Center Start */

.service-center-form {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.service-center-title {
    text-align: center;
    color: #1caf51;
    font-weight: 600;
    font-size: 36px;
    white-space: nowrap;
}

.district-select {
    height: 40px;
    min-width: 180px;
    max-width: 200px;
    width: 100%;
    background: white url(../img/select_arrow.svg) right 12px center / 8px 10px no-repeat;
    padding: 6px 28px 6px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    appearance: none;
}

.search-district-btn {
    min-width: 160px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    border-radius: 3px;
    border: none;
    background: linear-gradient(90deg, #026bc9 0, #00b852);
    color: white;
    padding: 0 16px;
    font-size: 24px;
}

.map-container {
    display: flex;
}

.address-search {
    padding: 6px 28px 6px 12px;
    margin-left: 2px;
    background: url(../img/search_icon.png) right 12px center / 25px 25px no-repeat;
}

.address-list-detail {
    color: black;
    width: 298px;
    height: 747px;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: pointer;
}

.address-list-detail ul {
    padding-left: 0;
}

.address-list-detail ul li {
    list-style-type: none;
    padding: 30px 15px;
    border-bottom: 1px solid #c8c8c8;
}

.address-list-detail h3 {
    color: black;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.details-info {
    display: flex;
    margin-top: 8px;
}

.details-info i {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    line-height: 20px;
}

.detail-address {
    word-break: break-all;
}

.detail-address a {
    color: #007bff;
}

.detail-address a:hover {
    text-decoration: underline;
}

.address-map {
    width: 100%;
    overflow: hidden;
}

.repair-button {
    margin-top: 15px;
}

.repair-button button {
    cursor: pointer;
    border: 1px solid black;
    border-radius: 30px;
    padding: 8px 15px;
    background-color: transparent;
    transition: all 0.2s;
}

.repair-button button:hover {
    border: 1px solid #007bff;
    color: white;
    background-color: #007bff;
}

/* Responsive */
@media only screen and (max-width: 992px) {
    .service-center-form {
        align-items: normal;
        flex-direction: column;
    }

    .district-select {
        max-width: 100%;
    }

    .search-district-btn::after {
        content: "করুন";
    }

    .map-container {
        flex-direction: column;
    }

    .address-search {
        margin: 0 auto;
        width: 99%;
    }

    .address-list-detail {
        width: 100%;
    }

    .address-map {
        display: none;
    }

}

/* Service Center End */