:root {
    font-size: 62.5%; /* Standard Fontsize Browser 16px also jetzt 1rem = 10px */
}
body { 
    font-family: sans-serif; 
    padding: 2rem;
    max-width: 1400px;
}

iframe {
    /*width: 100%;
    border: none;*/
    height: 100%;   
}
textarea {
    resize: vertical;
}
th, td, label {
    font-weight: 700;
    margin: 2rem 0px 0.2rem 0.2rem;
    font-size: small;
    color: #333;
    text-align: left;
    font-size: 1.4rem;
}
td, th, .overline div{
    border-bottom: 1px solid #ccc; 
}
 .overline div{
    margin-top:4px;
 }
label{
    display: block;
}
h1, .menu{
    margin: 0px 0px 0px 0px;
    padding: 1.3rem;
    border-bottom: 1px solid #ccc;
    color:  #333;
}
.menu{
    min-height: 85px;
}
.actions { 
    display: flex; gap: 1.2rem; 
    flex-wrap: wrap; 
    align-items: center; 
}
button{
    background-color: #0060df;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1rem;
    text-align: center;
    padding: 1rem 1.5rem;
    min-width: 12rem;
    cursor: pointer;
}
button.active, button:hover {
  background-color: #2374ff;
}
.left{
    text-align: left;
}
input[type="text"], select, textarea, #listing, .actions p {
    width: 100%;
    padding: 0.6rem;
    margin-top: 4px;
    box-sizing: border-box;
}
input#count{
    width: 4rem;
    text-align: center;
}
input[type="radio"]{
    width: 14px;
}
.container input[type="text"], data, select, textarea{
    background-color: transparent !important;
	padding: 0.8rem;
	border: 1px solid #b5b5b5;
	border-radius: 3px;
	box-shadow: inset 0 2px 1px #22222212;
}
/* Bitte warten */
#wait{
  margin: auto;
  position: fixed;
  top: 50%; 
  left: 50%;
}
#message{
  color:white;
  font-weight: 700;
  font-size: 3rem;
  text-shadow:
    -1px -1px 0 #666,
     1px -1px 0 #666,
    -1px  1px 0 #666,
     1px  1px 0 #666;
}
.spinner {
    border: 10px solid #ddd;
    border-top: 10px solid #0060df;;
    border-radius: 50%;
    width: 40px; height: 40px;
    animation: spin 1.5s linear infinite;
    margin: 20px auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hidden {
  display: none;
}