body {
    margin: 0;
    font-family: Open Sans, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100dvh;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #0056b3;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 1.5em;
}
#header-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-weight: bold;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 25px;
}
#message-example {
    font-size: 18px;
    display: block;
}
#message-example-variable {
    font-style: italic;
    color: darkgray;
    font-weight: bold;
}
label {
    font-size: 22px;
}
input {
    font-size: 25px;
}
footer {
    position: fixed;
    width: 100%;
    background-color: #0056b3;
    color: white;
    text-align: center;
    bottom: 0;
    padding: 10px 0;
}
footer button {
    background-color: white;
    color: #0056b3;
    border: none;
    padding: 10px 20px;
    font-size: 25px;
    cursor: pointer;
    border-radius: 5px;
}
main {
    margin: 55px 0px 60px 0px;
    padding: 0px 12px;
    flex: 1;
    overflow-y: auto;
    height: 100%;
}
.field-container {
    margin-bottom: 20px;
    position: relative;
}
.field-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.field-container input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.input-with-suggestions {
    padding-right: 2em !important;
}
.input-container {
    width: 100%;
}
.field-container .suggestions-button {
    position: absolute;
    right: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    height: -webkit-fill-available;
}
.field-container svg {
    height: 18px;
}
.suggestions {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    width: calc(100% - 20px);
    z-index: 1000;
    margin-top: 5px;
    border-radius: 5px;
}
.suggestions div {
    padding: 5px;
    cursor: pointer;
}
.suggestions div:hover {
    background-color: #007BFF;
    color: white;
}