* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
    flex-wrap: wrap;
}

.left-block, .right-block {
    flex: 1 0 50%;
}

.left-block {
    background-color: #000;
}

.right-block {
    background-color: #585858;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    width: max-content;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

#map {
    height: 100%;
    width: 100%;
}
.leaflet-control-layers {
    display: none;
}
.leaflet-control-zoom {
    display: none;
}