.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Styles pour la liste des revendeurs */
.bh-sl-loc-list ul {
    list-style: none;
    padding: 0;
}
.bh-sl-loc-list li {
    border: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px #eee;
}
.bh-sl-loc-list ul li:nth-child(odd) {
    background-color: #fff;
}
.bh-sl-loc-list ul li:nth-child(even) {
    background-color: #f2f2f2;
}
.bh-sl-loc-list .store-header .index-marker {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
    vertical-align: middle;
}
.bh-sl-loc-list .services div {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.bh-sl-loc-list .contact-info p {
    margin-bottom: 5px;
}
.bh-sl-loc-list .contact-info p:last-child {
    margin-bottom: 0;
}
.loc-showroom_pos.loc-showroom,
.loc-repair_pos.loc-repair,
.loc-instal_pos.loc-instal {
    width: 30px;
    height: 30px;
}