/**
 * 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;
}

/* 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;
    }
}
