#pbl-wrapper {
    display: flex;
    gap: 20px;
}

#pbl-map {
    width: 60%;
    height: 800px;
}

#pbl-sidebar {
    width: 40%;
    border: 1px solid #ddd;
    padding: 15px;
    overflow-y: auto;
    box-sizing: border-box;
}

.pbl-branch-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pbl-branch-item:hover {
    background: #f5f5f5;
}

.pbl-branch-item h4 {
    margin: 0 0 5px;
    line-height: 1.4;
    word-break: break-word;
    font-size: 18px;
}

.pbl-branch-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

#pbl-back-btn {
    margin-bottom: 15px;
    cursor: pointer;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #000;!important
	color:#fff;!important
}

#pbl-back-btn:hover {
    background: white;
	color:black;
}

.pbl-services-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
}

.pbl-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.pbl-services span {
    background: #f5f5f5;
    border-radius: 30px;
    padding: 6px 10px;
    font-weight: 400;
    font-size: 12px;
    color: #444;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

#pbl-branch-details h2,
#pbl-branch-details h3,
#pbl-branch-details h4 {
    margin-top: 0;
}

#pbl-branch-details p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Tablet and Mobile */
@media (max-width: 768px) {

    #pbl-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    #pbl-map {
        width: 100%;
        height: 350px;
    }

    #pbl-sidebar {
        width: 100%;
        max-height: none;
        overflow-y: visible;
    }

    .pbl-branch-item {
        padding: 15px 10px;
    }

    .pbl-services span {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* Small Phones */
@media (max-width: 480px) {

    #pbl-map {
        height: 300px;
    }

    #pbl-sidebar {
        padding: 12px;
    }

    .pbl-branch-item h4 {
        font-size: 16px;
    }

    .pbl-branch-item p {
        font-size: 13px;
    }

    #pbl-back-btn {
        width: 100%;
    }
}