/**
 * تصميم متجاوب لخرائط Google Maps
 */

/* تصميم عام للخرائط */
.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
}

/* خريطة الإدارة */
#admin-map {
    position: relative;
    width: 100%;
    height: 16rem; /* 256px */
    border-radius: 6px;
    overflow: hidden;
    background-color: #f9fafb;
}

/* خريطة الواجهة العامة */
#map {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .map-container {
        height: 250px;
    }
    
    #admin-map {
        height: 12rem; /* 192px */
    }
    
    #map {
        height: 250px;
    }
    
    /* تحسين عرض معلومات العنوان على الشاشات الصغيرة */
    #map-address-display {
        font-size: 0.875rem;
        padding: 0.5rem;
        margin-top: 0.5rem;
    }
}

/* تحسينات للشاشات الكبيرة */
@media (min-width: 1024px) {
    .map-container {
        height: 350px;
    }
    
    #admin-map {
        height: 20rem; /* 320px */
    }
    
    #map {
        height: 350px;
    }
}

/* تحسينات للشاشات الكبيرة جداً */
@media (min-width: 1280px) {
    .map-container {
        height: 400px;
    }
    
    #admin-map {
        height: 24rem; /* 384px */
    }
    
    #map {
        height: 400px;
    }
}

/* تصميم رسائل الخطأ */
.map-error-message {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 1rem;
}

.map-error-content {
    max-width: 300px;
}

.map-error-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.5rem;
}

.map-error-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.map-error-description {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* تحسين عرض معلومات العنوان */
#map-address-display {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #1e40af;
    line-height: 1.4;
}

#map-address-display strong {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

/* تحسين أزرار التحكم في الخريطة */
.gm-style .gm-style-cc {
    display: none !important;
}

.gm-style .gm-style-mtc {
    font-family: inherit;
}

/* تحسين نافذة المعلومات */
.gm-style .gm-style-iw-c {
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
}

/* تحسين العلامة المخصصة */
.custom-marker {
    background-color: #10b981;
    border: 3px solid #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* تحسين التحميل */
.map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f9fafb;
}

.map-loading-spinner {
    width: 2rem;
    height: 2rem;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* تحسين التفاعل باللمس */
@media (pointer: coarse) {
    .gm-style .gm-style-cc,
    .gm-style .gm-style-mtc {
        font-size: 14px;
    }
    
    .gm-style button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* تحسين الوضع المظلم */
@media (prefers-color-scheme: dark) {
    .map-container {
        background-color: #374151;
    }
    
    #admin-map {
        background-color: #374151;
    }
    
    #map {
        background-color: #374151;
    }
    
    #map-address-display {
        background-color: #1e3a8a;
        border-color: #3b82f6;
        color: #dbeafe;
    }
}

/* تحسين إمكانية الوصول */
.map-container:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* تحسين الطباعة */
@media print {
    .map-container,
    #admin-map,
    #map {
        height: 200px;
        background-color: #f3f4f6;
        border: 1px solid #d1d5db;
    }
    
    .map-container::after {
        content: "خريطة الموقع - يرجى زيارة الموقع الإلكتروني لعرض الخريطة التفاعلية";
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
        text-align: center;
        padding: 1rem;
    }
}
