.leaflet-map-wrapper {
    position: relative;
    width: 100%;
}

.leaflet-map {
    width: 100%;
    max-width: 100%;
    background: #e8e8e8;
}

.leaflet-map[hidden] {
    display: none;
}

.leaflet-map-consent {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.92)
        ),
        repeating-linear-gradient(
            45deg,
            #eeeeee,
            #eeeeee 10px,
            #e5e5e5 10px,
            #e5e5e5 20px
        );
    text-align: center;
}

.leaflet-map-consent__content {
    width: 100%;
    max-width: 560px;
}

.leaflet-map-consent__title {
    display: block;
    margin-bottom: 1rem;
    color: #990132;
    font-size: 1.3rem;
}

.leaflet-map-consent__text {
    margin: 0 0 1.25rem;
}

.leaflet-map-consent__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.4rem;
    border: 0;
    border-radius: 3px;
    background: #990132;
    color: #ffffff;
    font: inherit;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.leaflet-map-consent__button:hover,
.leaflet-map-consent__button:focus-visible {
    background: #760126;
}

.leaflet-map-consent__button:active {
    transform: translateY(1px);
}

.leaflet-map-consent__button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.leaflet-map-popup__title {
    display: block;
    margin-bottom: 0.4rem;
    color: #990132;
}

.leaflet-map-popup__text {
    line-height: 1.5;
}

.leaflet-map-error {
    padding: 1rem;
    border-left: 4px solid #990132;
    background: rgba(153, 1, 50, 0.08);
}

.leaflet-map-loading {
    display: inline-block;
    margin-left: 0.5rem;
}

@media (max-width: 767px) {
    .leaflet-map-consent {
        min-height: 300px;
        padding: 1.5rem;
    }
}