body {
    background-color: #eef3fd; 
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px; /* Höhe des festen Kopfbereichs */
    background-color: #eef3fd;
}

#version {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12;
    color: #90aee9;
    width: 200px;
    position: fixed;
    top: 10px;
    right: 50px;
    height: 20px; /* Höhe des festen Kopfbereichs */
    z-index: 999;
    text-align: right;
}

/* CSS für den flexiblen unteren Bereich */
#content {
    margin-top: 300px; /* Überspringen der Höhe des festen Kopfbereichs */
    height: calc(100vh - 300px); /* Verbleibende Fensterhöhe berechnen */
    background-color: #eef3fd;
    width: 100%;
}

/* CSS für das DIV mit der GIF */
#processDiv {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 57, 57, 0.3);
    position: fixed;
    z-index: 99;
    display: none;
}

textarea {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14;
    resize: none;
}


.buttonClass {
    margin-left: 3px;
    margin-top: 5px;
    font-size:18px;
    font-family:Arial;
    width:76px;
    height:30px;
    border-width:1px;
    color:#fff;
    border-color:#84bbf3;
    font-weight1:bold;
    border-top-left-radius:6px;
    border-top-right-radius:6px;
    border-bottom-left-radius:6px;
    border-bottom-right-radius:6px;
    box-shadow:inset 0px 1px 0px 0px #bbdaf7;
    text-shadow:inset 0px 1px 0px #528ecc;
    background:linear-gradient(#79bbff, #378de5);
}

.buttonClass:hover {
    background: linear-gradient(#378de5, #79bbff);
}

.buttonMicroClass {
    margin-top: 5px;
    font-size:16px;
    font-family:Arial;
    width:30px;
    height:30px;
    border-width:1px;
    color:#fff;
    border-color:#84bbf3;
    font-weight:bold;
    border-top-left-radius:6px;
    border-top-right-radius:6px;
    border-bottom-left-radius:6px;
    border-bottom-right-radius:6px;
    box-shadow:inset 0px 1px 0px 0px #bbdaf7;
    text-shadow:inset 0px 1px 0px #528ecc;
    background:linear-gradient(#79bbff, #378de5);
}

.buttonMicroClass:hover {
    background: linear-gradient(#378de5, #79bbff);
}


#showinprocess{
    text-align: center;
    align-items: center;
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: white;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
}

.titlepic{
    display: flex; 
    justify-content: center; 
    align-items: center;
    top:10px;
}

#idContainer{
    width: 60%;
    position: fixed;
}



.css_question{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14;
    border: 1px solid rgb(156, 150, 65);
    border-radius: 8px;
    background-color: rgb(252, 249, 211);
    margin-top: 15px;
    padding: 5px;
}

.css_answer{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14;
    border: 1px solid rgb(43, 98, 150);
    border-radius: 8px;
    background-color: rgb(203, 232, 255);
    margin-top: 8px;
    margin-left: 30px;
    padding: 10px;
}

.css_error{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14;
    border: 1px solid rgba(197, 0, 0); 
    border-radius: 8px;
    background-color: rgb(243, 130, 111);
    margin-top: 15px;
    padding: 5px;
}

.php_error{
    width: 600px;
    height:100px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24;
    border: 1px solid rgba(197, 0, 0); 
    border-radius: 8px;
    background-color: rgb(243, 130, 111);
    padding: 5px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top1:-150px;
    margin-left:-300px;
}

#resultcontainer{
    /*min-height:calc(100vh - 400px);*/
    /*height: 300px; */
    /*max-height:calc(100vh - 500px)*/
    overflow: auto; /* Scrollen aktivieren */ 
}


#content table {
    width:70%;
    height:100%;
    border-collapse:collapse;
    padding:5px;
}

#content table th {
    border:1px solid #b3adad;
    padding:5px;
    color: #313030;
}

#content table td {
    text-align:left;
    padding:5px;
    color: #313030;
}

.link-url {
    color: #246CA6;
    font-size: 12px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
 }
 .link-url:hover {
    color: #D1740B;
    font-weight: bold;
 }