body {
    background-color: #eef2f4;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
}

header {
    background-color: #003366;
    padding: 10px 20px;
    position: relative;
}

.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;
}

.container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.alerts, .reports {
    background-color: #77a1b7;
    border-radius: 5px;
    padding: 20px;
    width: 45%;
    height: calc(100vh - 160px); 
    overflow-y: auto; 
    position: relative;
}


.alerts {
    margin-right: 20px;
}


.table-header {
    font-weight: bold;
    margin-bottom: 10px;
}

.alert-item {
    background-color: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.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;
}
