body {
    background-color: #DCC9B6;
}

nav {
    display: flex;
    background-color: #AE9332;
    padding: 2px;
}

nav a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    text-decoration: none;
    color: black;
    cursor: pointer;
    background-color: #C8AB41;
    border-radius: 25px;
    margin-left: 1%;
    margin-right: 1%;
}

h1 {
    text-align: center;
    font-weight: bolder;
}

.login-form {
    margin: 0 auto;
    width: 400px;          /* or max-width: 400px; */

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;

    background-color: #BD9975;
    padding: 40px;
    border-radius: 25px;
}

input {
    height: 2em;
    width: 25em;
}

input[type="submit"] {
    height: auto;
    background-color: #04AA6D;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
    line-height: 1;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table, td, th {
    border: 1px solid;
    padding: 10px;
}

.claim-chore {
    width: 100%;
    height: 4em;

    border-radius: 25px;
    background-color: #7FDEFF;
    font-weight: bold;
    font-size: 16px;
}

.chore-name {
    font-weight: bold;
}

.claimed {
    font-size: 16px;
    text-align: center;
}

.table-scroll {
overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-scroll table {
    white-space: nowrap;
}

.table-scroll th:first-child,
.table-scroll td:first-child {
    position: sticky;
    left: 0;
    background: #DCC9B6;
}