body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

header {
    background-color: #003366;
    position: relative;
    padding: 10px 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    margin: 0;
    color: white;
}

.logout-button {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    border: 1px solid currentColor;
    border-radius: 4px;
}


.logout-button:hover {
    background-color: white;
    color: #003366;
}

.legend {
    width: 200px;
    background-color: rgba(78, 132, 158, 0.8);
    padding: 20px;
    position: fixed;
    top: 100px;
    left: 20px;
    border-radius: 10px;
    color: white;
    z-index: 50;
}

.status-indicators {
    margin-bottom: 30px;
}

.status-item {
    margin-bottom: 10px;
}

.line {
    width: 60px;
    height: 8px;
    border-radius: 4px;
    margin-right: 10px;
    display: inline-block;
}

.line-text {
    color: white;
    font-size: 14px;
    vertical-align: middle;
}

.safe {
    background-color: #2ECC71;
}

.neutral {
    background-color: #F1C40F;
}

.danger {
    background-color: #E74C3C;
}

.markers {
    margin-top: 30px;
}

.marker {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.icon {
    font-size: 24px;
    margin-right: 15px;
}

.map-container {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 60px;
    background-color: #e0e0e0;
}

.navigation {
    background-color: #003366;
    padding: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
}

.navigation a {
    color: white;
    text-decoration: none;
    padding: 20px;
    flex: 1;
    text-align: center;
    transition: background-color 0.3s;
    font-size: 14px;
}

.navigation a:hover,
.navigation a.active {
    background-color: #005580;
}
