/**
 * World Map Styles
 * H. Deckhardt Verschließtechnik
 */

#map {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    position: relative;
    z-index: 1;
}

/* Responsive Anpassungen - Mobile First Approach */
/* Sehr kleine Screens */
#map {
    height: 300px;
    border-radius: 6px;
}

/* Tablets und kleine Laptops */
@media screen and (min-width: 481px) {
    #map {
        height: 400px;
        border-radius: 8px;
    }
}

/* Desktop */
@media screen and (min-width: 769px) {
    #map {
        height: 600px;
        border-radius: 12px;
    }
}

/* Leaflet Popup Styling */
.leaflet-popup-content-wrapper {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    font-family: inherit;
}

.leaflet-popup-content {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #1f2937;
}

.leaflet-popup-content strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

/* Close Button Styling */
.leaflet-popup-close-button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #6b7280;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    transition: all 0.2s ease;
}

.leaflet-popup-close-button:hover {
    background: #e5e7eb;
    color: #111827;
}

.leaflet-popup-close-button:active {
    background: #d1d5db;
}
