body {
    font-family: Arial, sans-serif;
    background-color: #5B0002;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.logo {
    display: block;
    margin: 0 auto 0px; /* Center the logo and add space below it */
    max-width: 150px; /* Ensure the logo is responsive */
    height: auto; /* Maintain aspect ratio */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

h1 {
    margin: 0;
    font-size: 24px;
	color: #b9141a;
}

h4 {
    margin: 0;
    font-size: 18px;
	color: #000000;
}

#searchBox {
    padding: 10px;
    width: 300px;
    border: 1px solid #888;
    border-radius: 6px;
    font-size: 16px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    border: 1px solid #888;
    text-align: left;
	background-color: #ffffff;
}

th {
    background-color: #ffffff;
}

tr:nth-child(even) {
    background-color: #b9141a;
}

a {
    text-decoration: none;
    color: #b9141a;
}

a:hover {
    text-decoration: underline;
}

img {
    vertical-align: middle;
}
