body {
    background: #236161;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

.main {
    min-height: calc(100vh - 90px);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.wrap {
    margin: auto;
    padding: 40px;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

.logo-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 8px;
    margin: 0 auto 30px auto;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.logo {
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

.info {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

#map {
    height: 100%;
    width: 100%;
}

.legend {
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 12px;
    margin-top: 10px;
    color: black;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.legend-color {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 3px;
}

.main-button {
    background: #454545;
    color: #fff;
    border: 0;
    cursor: pointer;
    text-align: center;
    width: 100%;
    height: 44px;
    border-radius: 6px;
    transition: background 0.3s ease-in-out;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.main-button:hover {
    background: #785815;
}

.back-button {
    background: #454545;
    color: #fff;
    text-decoration: none;
    padding: 0 16px;
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 120px;
    margin: 0 auto;
    transition: background 0.3s ease-in-out;
}

.back-button:hover {
    background: #785815;
}
