/**
 * Zoomies Location Map Shortcode Styles
 * 
 * @package SherAgency_Child
 * @version 1.0.0
 */

.zoomies-map-wrapper {
    width: 100%;
}

.zoomies-map-container {
    width: 100%;
    overflow: hidden;
}

/* Custom marker popup styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

.zoomies-custom-popup {
    padding: 15px;
    min-width: 200px;
}

.zoomies-custom-popup h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.zoomies-custom-popup p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.zoomies-custom-popup a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 8px 16px;
    background: #241E1E;
    color: #FFFBEA;
    text-decoration: none;
    border: 1px solid #241E1E;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.zoomies-custom-popup a:hover {
    background: #E2A422;
    color: #241E1E;
    border-color: #FFFBEA;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 168, 32, 0.3);
}
