body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #004080;
padding: 5px;
color: white;
position: relative;
flex-direction: row; /* Ensure the buttons stay in a horizontal row */
}

.header .blue-ribbon {
position: absolute;
top: 0;
left: 0;
width: 30px;
height: 100%;
background-color: blue;
clip-path: polygon(0 0, 100% 0, 0% 100%);
}

.header .back-button,
.header .home-button,
.header .menu-button {
background: none;
border: none;
color: white;
font-size: 18px;
cursor: pointer;
padding: 5px;
padding-left: 10px;
}

.header .menu-button {
font-size: 24px;
}

/* For mobile-specific adjustments */
@media (max-width: 768px) {
.header {
flex-direction: row; /* Make sure flex direction is row in mobile mode */
}

.header .home-button {
margin: 0 auto; /* Keep home button centered */
}
}

.container {
    padding: 20px;
}
.content {
    font-size: 16px;
    line-height: 1.6;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
table, th, td {
    border: 1px solid #ddd;
}
th, td {
    padding: 12px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    .content {
        font-size: 14px;
    }
    table, th, td {
        font-size: 12px;
    }
}
nav {
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: none;
    z-index: 1000;
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
nav ul li {
    margin: 10px 0;
}
nav ul li a {
    color: #004080;
    text-decoration: none;
    font-size: 18px;
}
nav ul li a:hover {
    text-decoration: underline;
}
