/**
 * Public styles for Multi Maps Manager.
 *
 * @package    Multi_Maps_Manager
 * @subpackage Multi_Maps_Manager/public/css
 */

/* Map Container */
.multi-maps-container {
    margin: 20px 0;
    position: relative;
}

/* Map */
.multi-map {
    width: 100%;
    height: 400px;
    position: relative;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

/* Loading Indicator */
.multi-map-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.multi-map-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Messages */
.multi-maps-error {
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 3px;
    margin: 10px 0;
}

/* Info Windows */
.gm-style .gm-style-iw {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding: 10px;
}

.gm-style .gm-style-iw-c {
    padding: 12px !important;
    border-radius: 8px !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 !important;
}

.marker-info-window {
    max-width: 250px;
}

.marker-info-window h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.marker-info-window p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
    .multi-map {
        height: 300px;
    }
    
    .marker-info-window {
        max-width: 200px;
    }
    
    .marker-info-window h3 {
        font-size: 14px;
    }
    
    .marker-info-window p {
        font-size: 12px;
    }
}

/* Divi Theme Compatibility */
.et_pb_module .multi-maps-container {
    margin: 0;
}

.et_pb_module .multi-map {
    border: none;
}
