/**
 * Style dla mapy OpenStreetMap
 */

.punkty-odbioru-mapa {
    width: 100%;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 20px 0;
}

/* Style dla popupów */
.punkty-odbioru-popup {
    font-size: 14px;
    line-height: 1.5;
    min-width: 200px;
}

.punkty-odbioru-popup strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 16px;
}

.punkty-odbioru-popup br {
    margin-bottom: 3px;
}

/* Responsywność */
@media (max-width: 768px) {
    .punkty-odbioru-mapa {
        height: 300px !important;
    }
    
    .punkty-odbioru-popup {
        min-width: 150px;
        font-size: 12px;
    }
}