body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
.header {
    background-color: #1a3e5c;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header img {
    margin-right: 20px;
}
.header nav {
    display: flex;
    gap: 10px;
}
.header nav a {
    color: white;
    text-decoration: none;
    margin-left: auto;
    transition: font-weight 0.3s, transform 0.3s;
}
.header nav a.active {
    font-weight: bold;
    transform: scale(1.1);
}
.header-text {
    margin-right: auto;
    display: flex;
    flex-direction: column; /* Ensures text stacks vertically */
}
.header h1 {
    margin: 0;
    margin-top: 0;
    font-size: 18px;
}
.header h2 {
    margin: 0;
    font-size: 16px;
}
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background: #1a2a6c;
    padding-top: 60px;
    z-index: 1000;
    transition: 0.3s;
}
.sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
}
.sidebar a:hover {
    background: #575757;
}
.sidebar .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
}
.main-content {
    background-color: #d3d3d3;
    text-align: center;
    margin-bottom: 20px;
}
table {
    width: 100%;
    max-width: 800px; /* Optional: Limit table width */
    border-collapse: collapse;
    margin-top: 0 auto;
    margin-inline: auto;
}
th, td {
    border: 1px solid #a1a1a1;
    padding: 8px;
}
th {
    background-color: #fffdfd;
    font-weight: bold;
    text-align: center;
}
.note {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
}
.footer {
    background-color: #1a3e5c;
    color: white;
    padding: 20px;
    text-align: left;
}
.footer .column {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    padding: 10px;
}
.footer .column h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.footer .column p, .footer .column a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer .column a:hover {
    color: #ffc107;
    /* Hover effect */
    padding-left: 10px;
    /* Move to the left */
}


.box {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    background-color: #1a3e5c;
    margin-bottom: 10px;
    width: 200px; /* Set a fixed width for all boxes */
    text-align: center; /* Center the text inside the box */
}

.box a {
    display: block; /* Make the link fill the box */
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit the text color */
}

.box:hover {
    background-color: #148206; /* Change background color on hover */
    cursor: pointer; /* Change cursor to pointer on hover */
}

.centered-box {
    text-align: center;
    margin-top: 20px;
}

.white-text {
    color: rgb(48, 14, 14);
}


@media (max-width: 768px) {
    .main-content input[type="text"] {
        width: 100%;
    }
    .footer .column {
        display: block;
        width: 100%;
    }
}
