body {
    font-family: sans-serif;
    font-size: 14px;
    margin: 0px;
    overflow: hidden;
}

.helpIcon {
    cursor: pointer;
    font-size: 18px;
    color: #83b7db;
}
.helpIcon:hover {
    color: #5990b7;
}
.helpIcon:after {
    content: " 🛈";
}

#menu {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 315px;
    padding: 10px;
    border-radius: 2px;
    background-color:#eeeeee;
}
#menu h1 {
    margin: 0px;
    font-family: 15px;
    margin-bottom: 10px;
}
#menu table th {
    text-align: left;
    font-weight: normal;
    
}
#menu input {
    margin-left: 10px;
}

#dialog {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 2px;
    background-color:#eeeeee;
    max-width: 600px;
}

#hiddenTexts {
    display: none;
}

button {
    width: 100%;
    border: 1px solid #aaaaaa;
    padding: 5px;
    border-radius: 2px;
    background-color: #cccccc;
    margin-top: 10px;
    color: #222222;
    cursor: pointer;
}
button:disabled {
    color: #aaaaaa;
    cursor: not-allowed;
}
button:hover {
    background-color: #dddddd;
}
button:hover:disabled {
    background-color: #cccccc;
}
