/* تنسيق الخريطة */
#carte-stores-map {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* تنسيق النوافذ المنبثقة */
.custom-popup {
    font-family: 'Arial', sans-serif;
    direction: rtl;
    text-align: right;
}

.custom-popup h3 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 18px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

.custom-popup p {
    margin: 5px 0;
    color: #555;
    font-size: 14px;
}

.custom-popup .phone {
    color: #27ae60;
    font-weight: bold;
    direction: ltr;
    text-align: left;
}

.custom-popup .address {
    color: #7f8c8d;
    font-style: italic;
}

/* تنسيق الأيقونات */
.leaflet-marker-icon {
    transition: transform 0.2s;
}

.leaflet-marker-icon:hover {
    transform: transform(1.2); /* Fix for scale, assuming it was meant to be scale(1.2) but using pure css might need !important if leaflet overrides */
    /* Leaflet handles scale via transform, so we might need to be careful. 
       The user's code had transform: scale(1.2), let's stick to that but ensure it works with Leaflet's positioning */
    z-index: 1000 !important;
}
