body {
    font-family: Arial, sans-serif;
    background-color: #faf3e0;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 50px 0;
    font-size: 14px;
}

.container {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    width: 80%;
    max-width: 95%;
}

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

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

.alternating tr:nth-child(even) {
    background-color: #f2f2f2;
}

.alternating tr:nth-child(odd) {
    background-color: #ffffff;
}

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

button {
    background-color: #ebe6df;
    color: #5a5a5a;
    border: 1px solid #5a5a5a;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    padding: 5px;
}

button:hover {
    background-color: #ebe6df;
}

button:active {
    background-color: #ddd8d0;
}

.utility {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.utility form {
    display: inline-block;
    margin: 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    background-color: #fff;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    width: 100%;
    min-width: 15vw;
    max-width: 20vw;
    height: 32px;
    box-sizing: border-box;
    line-height: 32px;
}

input[type="number"] {
    appearance: textfield;
}

textarea {
    height: 32px;
}

select {
    cursor: pointer;
    height: 32px;
    line-height: 32px;
    padding: 5px;
}