table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ddd;
}

th,
td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #4b3b15;
    color: white;
}

tr:nth-child(even) {
    background-color: #8c7344;
    color: #ffffff;
    /* Ensure text color contrasts with background */
}

tr:nth-child(odd) {
    background-color: #a18038;
    color: black;
}

tr:hover {
    background-color: #ddd;
}

th:nth-child(even) {
    background-color: #006400;
}

th:nth-child(odd) {
    background-color: #008800;
}


/* Add more column colors as needed */

h1,
h2,
h3 {
    text-align: center;
}

/* Remove text-align for h2 */
h2 {
    text-align: left;
}

.title-bar {
    text-align: center;
}

nav {
    background-color: #4b3b15;
    width: 100%;
    display: block;
    padding: 0;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 010px;
    padding: 5;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #0f4d0b;
    color: white;
    border-radius: 5px;
    display: inline-block;
}

nav ul li a:hover {
    background-color: #ffcc00;
    /* Contrast color */
    color: black;
}

button.action,
.btn {
    text-decoration: none;
    padding: 10px 20px;
    /* Increased padding */
    background-color: #0f4d0b;
    color: white;
    border-radius: 5px;
    display: inline-block;
    border: 2px solid #0f4d0b;
    /* Border color matching background */
    font-size: 16px;
    /* Adjusted font size */
}