body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #2c3e50;
}

.page {
    display: flex;
    height: 100vh;
}

.side-section {
    flex: 2;
    background-color: #3f5871;
    padding: 20px;
    text-align: center;
    color: #fff;
}

#title {
    margin-top: 0;
    font-size: 40px;
}

.map-section {
    flex: 7;
    position: relative;
}

.map-title {
    font-size: 30px;
    font-weight: bold;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: #fff;
}

.map-container {
    height: calc(100% - 90px);
    padding: 0 20px 20px;
}

#mapyna {
    height: 100%;
}

.menu-items {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}


.link-button {
    display: flex;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    background-color: #ffffff;
    color: #555555;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    min-width: 170px;
}

.link-button:hover {
    background-color: #ff004d;
    color: #FFFFFF;
}