.bml-wrapper {
    max-width: 100%;
    margin: 0 auto;
    font-family: inherit;
}

.bml-wrapper,
.bml-wrapper * {
    font-family: "segoe-ui", sans-serif !important
}

/* Search Form */
.bml-search-form {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    align-items: center;
}

.bml-search-input {
    flex: 1;
    padding: 18px 22px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #ffffff;
    color: #000;
    outline: none;
    transition: all 0.3s ease;
}

.bml-search-input:focus {
    border-color: #641246;
}

/* Search Button */
.bml-search-btn {
    background: #003087;
    color: #fff !important;
	font-weight: 700;
    border: 0;
    border-radius: 8px;
    padding: 18px 28px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.bml-search-btn:hover {
    background: #00266b;
}

/* Branch Card */
.bml-card {
    border: 1px solid #eed6e6;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,.04);
}


.bml-card p {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 5px;
    color: #000;
}

.bml-card strong {
    font-weight: 700;
}

/* Map */
.bml-map {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.bml-map iframe {
    width: 100% !important;
    height: 400px !important;
    border: 0 !important;
    display: block;
}

/* No Result */
.bml-no-result {
    padding: 28px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
    font-size: 17px;
}

/* Pagination */
.bml-pagination {
    text-align: center;
    margin-top: 25px;
}

.bml-pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #641246;
}

.bml-pagination a.active,
.bml-pagination a:hover {
    background: #641246;
    color: #fff !important;
    border-color: #641246;
}

/* FORCE WHITE INPUT BACKGROUND */
.bml-wrapper .bml-search-form .bml-search-input,
.bml-wrapper .bml-search-form .bml-search-input:focus,
.bml-wrapper .bml-search-form .bml-search-input:active,
.bml-wrapper .bml-search-form .bml-search-input:hover {
    background-color: #ffffff !important;
    background-image: none !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    color: #000000 !important;
}

.bml-wrapper .bml-search-form .bml-search-input:-webkit-autofill,
.bml-wrapper .bml-search-form .bml-search-input:-webkit-autofill:hover,
.bml-wrapper .bml-search-form .bml-search-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #000000 !important;
}

/* Responsive */
@media (max-width: 767px) {

    .bml-search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .bml-search-btn {
        width: 100%;
        text-align: center;
    }

    .bml-card {
        padding: 22px;
    }


    .bml-card p {
        font-size: 16px;
    }

    .bml-map iframe {
        height: 300px !important;
    }
}