body {
    background-color: gainsboro;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: sans-serif, Helvetica;
    flex-direction: column;
}
h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.button {
    padding: 10px 20px;
    margin: 5px;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.button:hover {
    background-color: gray;
}
table { 
    border-collapse: collapse; 
    width: 100%; 
    margin-top: 20px; 
    background-color: #1a1a1a; /* Dark table base */
}
th, td { 
    border: 2px solid #333; 
    padding: 12px; 
    text-align: left; 
    color: #333; /* Dark text for contrast with light header */
}
th { 
    background-color: #f2f2f2; /* Light background for headers */
    color: #333; /* Dark text for readability */
    font-weight: bold; 
    font-size: 16px; 
}
tr:nth-child(even) { 
    background-color: White; /* Light background for even rows */
}
tr:nth-child(odd) { 
    background-color: White; /* Dark background for odd rows */
}
tr:hover { 
    background-color: Yellow; /* Darker hover effect */
}
.search-form { 
    margin: 20px 0; 
}