.bh-directions-wrapper {
    width: 100%;
    margin-top: 20px;
}

.bh-map {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

.bh-topbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bh-topbar input {
    flex: 1;
    min-width: 250px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
}

.bh-topbar button,
.bh-travel-modes button {
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: #f3f3f3;
    font-size: 15px;
}

.bh-travel-modes {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.bh-travel-modes button.active {
    background: #000;
    color: #fff;
}

.bh-route-info {
    display: flex;
    gap: 30px;
    margin-top: 15px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 16px;
}

@media(max-width:767px) {

    .bh-map {
        height: 420px;
    }

    .bh-topbar {
        flex-direction: column;
    }

    .bh-topbar button {
        width: 100%;
    }

    .bh-route-info {
        flex-direction: column;
        gap: 10px;
    }
}