html {
    background-color: rgb(232,239,241);
    font-family: Arial;
}

#allrounder {
	display: flex;
	flex-direction: column;
	width: 80%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 150px auto 0px auto; /* Center align the allrounder div and add space above */    
    box-shadow: 5px 5px 20px grey;
    border-radius: 25px;
}


#top {
	display: flex;
}

#bottom {
    background-color: #d2e1e5;
    text-align: center;
    padding: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    display: flex;
    justify-content: space-around;
}

#left, #right {
    display: flex;
    flex: 1;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    height: auto; /* Ensure dynamic height based on content */
}

#left {
    border-top-left-radius: 25px;
    background-color: white; /* White background for the left section */
}

#right {
    border-top-right-radius: 25px;
    background-color: rgb(253,211,25); /* Yellow background for the right section */
}

.rightBorder {
    border-top-right-radius: 25px;	
}

p {
    color: darkgrey;
}

h1, h2, p {
    padding-left: 30px;
}

#form {
    text-align: center;
}

#checkBtn {
    color: white;
    font-weight: bold;
    background-color: #FFD700;
    width: 70%;
    height: 40px;
    border: none;
}

#fragen {
    font-size: 12px;
    text-align: center;
    padding: 0px;
}

#pqa_check {
    border: 0.5px solid lightgray;
    width: 70%;
    height: 30px;
}

#logo {
    width: 150px;
    padding-left: 20px;
    padding-top: 20px;
}

.endpic {
    display: none;
    height: 50px;
}

#auswertung {
    width: 100%;
    color: white;
    margin-top: 0; /* Remove unnecessary top margin */
}

#responsewrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}

#ok {
    background-color: lightgreen;
    visibility: hidden;
    color: darkgreen;
    margin-top: 1px;
    padding: 10px;
    text-align: center;
}

#notok {
    background-color: #FFA07A;
    visibility: hidden;
    color: darkred;
    padding: 10px;
    margin-top: 1px;
    text-align: center;
}

.def {
    color: white;
}

i {
    margin-left: 30px;
    font-size: 40px;
}

.respnsediv {
    text-align: center;
}

.title {
	text-decoration: underline;
}