.inline-label {
    display: inline;
    margin: 1rem auto;
    vertical-align: middle;
    font-size: 90%;
    font-weight: 100;
    color: #784c29;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Full viewport height */
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F3F2E9;
}

.form-container {
    width: 28rem;
    min-width: 18rem;
    margin: 10% auto;
    padding: 10%;
    background-color: #F3F2E9;
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

form input, form select, form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form input[type="checkbox"] {
    width: auto;
    margin-right: 0.25rem;
}

form input[type="submit"], form input[type="button"] {
    display: flow;
    background-color: #EA337F;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    width: 12rem;
    margin: 1rem auto 0 auto;
    font-size: 1.2rem;
    font-weight: 600;
}

form input[type="submit"]:hover, form input[type="button"]:hover {
    background-color: #F7CF46;
    color: black;
}

.duo-selector-wrapper {
    display: flex;
    gap: 10px;
    -webkit-align-items: center;
    align-items: center;
}

select {
    padding: 8px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 100%;
}

.hidden-section {
    display: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    table-layout: auto; 
}
th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}
th {
    background-color: #EA337F;
    color: white;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
tr:hover {
    background-color: #ddd;
}