body {
    padding: 10pt;
    margin: 0;
    height: 100vh;
    height: -webkit-fill-available; /* fix for iphone when address bar covers top of the page (1/2) */
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #d9e4cd;
    font-family: "Trebuchet MS",Helvetica,Sans-serif;
    color: #000000;
    overflow-x: hidden; /* Remove horizontal scroll */
}

html {
    height: -webkit-fill-available; /* fix for iphone when address bar covers top of the page (2/2) */
}

label {
    display: block;
    margin-bottom: 10px;
}

input {
    width: 80%;
    padding: 8px;
    font-size: 14pt;
    margin-top: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

select {
    width: 80%;
    padding: 8px;
    font-size: 14pt;
    margin-top: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    -webkit-appearance: none; /* Remove default styling in Safari */
    appearance: none; /* Remove default styling */
}

select option {
    font-size: 14pt;
}

