.cbm-governorates-container {
    max-width: 900px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.cbm-governorate {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 6px;
}

.cbm-governorate-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.cbm-branches {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cbm-branch {
    flex: 1 1 300px;
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
}

.cbm-branch-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.cbm-branch-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 4px;
    margin-top: 10px;
}

.cbm-branches {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cbm-branch {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 20px;
    min-width: 260px;
    max-width: 100%;
}

@media (max-width: 900px) {
    .cbm-branch {
        flex: 1 1 calc(50% - 20px);
    }
}
@media (max-width: 600px) {
    .cbm-branch {
        flex: 1 1 100%;
    }
}

.cbm-governorate-search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 400px;
    font-family: Arial, sans-serif;
}

.cbm-governorate-label {
    white-space: nowrap;
    font-weight: 600;
}

#cbm-governorate-select {
    flex-grow: 1;
    padding: 10px 100px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

#cbm-governorate-select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
}

#cbm-governorate-search-btn {
    padding: 7px 16px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#cbm-governorate-search-btn:hover,
#cbm-governorate-search-btn:focus {
    background-color: #005177;
    outline: none;
}
