html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100vh;
}

.leaflet-control-attribution {
    font-size: 10px;
}

#language-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;

    display: flex;
    gap: 4px;

    background: white;
    padding: 4px;
    border-radius: 6px;

    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.language-button {
    border: none;
    background: transparent;

    font-size: 22px;
    line-height: 1;

    padding: 5px 7px;

    cursor: pointer;
    border-radius: 4px;
}

.language-button:hover {
    background: #f0f0f0;
}

.language-button.active {
    background: #e5e7eb;
}
