body {
    font-family: Arial, Helvetica, sans-serif;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    background-color: #f5ebdc;
}

#bodyContainer {
    justify-content: center;
    justify-items: center;
    display: flex;
    grid-gap: 40px;
}

#calendarContainer {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-top: 5%;
}

table {
    background-color: #C59E62;
    padding: 10px;
}


table, td {
    text-align: center;
    border-radius: 10px;
}

#monthTable td, th {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
}

td {
    background-color: white;
}

td, th {
    width: 40px;
    height: 40px;
    aspect-ratio: 1 / 1;
}

.button:hover {
    background-color: black;
    color: white;
}

.textButton {
    border-radius: 10px;
}

td:hover {
    background-color: #C5C5C5;
}

#submit {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;
    border-radius: 10px;
    background-color: #C59E62;
    transition: 0.3s;
}

#submit:hover {
    background-color: black;
    color: white;
}

.disabled {
    pointer-events: none;
    background-color: black;
    opacity: 0.4;
}

.ignored {
    background-color: white;
    opacity: 0.5;
}

.ignored:hover {
    background-color: white;
}

.selected {
    background-color: black;
    color: white;
}

.ignored.selected {
    background-color: white;
    color: black;
}

#choiceContainer {
    display: grid;
    margin-top: 5%;
}

.radioChoice, .numberChoice, .dateChoice, .simpleBackground {
    padding: 5px;
    text-align: center;
    border-radius: 10px;
    background-color: white;
}

#gpcID {
    width: 25%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid black;
    text-align: center;
}

input[type=radio] {
    accent-color: #C59E62;
}

input:disabled+label {
    opacity: 0.4;
}

#infoContainer {
    display: absolute;
    background-color: white;
    padding: 5px;
    border-radius: 10px;
    position: fixed;
    bottom: 1%;
    width: 20%;
    left: 79%;
    height: 35%;
    text-align: center;
}

#reveal {
    height: 20px;
    width: 20px;
    background-color: #C59E62;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    justify-content: center;
}

.tooltipText {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    width: 120px;
    color: white;
    font-size: 12px;
    background-color: black;
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
    bottom: 100%;
    right: 0;
}

#showRowCount:hover .tooltipText {
    visibility: visible;
}

.loaderContainer {
    position: absolute;
    left: 0%;
    width: 100%;
    background-color: rgb(0, 0, 0, 0.4);
}

.loaderContainer, .loaderBackground {
    position: fixed;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.loaderBackground {
    background-color: black;
    opacity: 0;
}


.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid white;
    border-radius: 50%;
    border-top: 16px solid #C59E62;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    opacity: 0;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.divider {
    margin: auto auto;
    padding: 0;
    border-bottom: 1px solid #C5C5C5;
    width: 50%;

}

hr {
    border-color: #C59E62;
}

.emphText {
    color: #C59E62;
    font-weight: bold;
}