

#Forms{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#Forms h2{
    text-align: center;
    font-size: 6vmin;
    font-family: 'Sofia', sans-serif;
}

#changeForm{
    display: none;
}

.SubmitButtons, #operationSelect{
    justify-content: center;
    display: flex;
    gap: 20px;
    margin-top: 20px;
    text-align: center;
}

.Button{
    gap: 20px;
    width: 100px;
    padding: 10px;
    text-align: center;
    border-radius: 20px;
}

#operationSelect .Button{
    width: 150px;
}

#operationSelect .Button.active{
    border-color: blue;
}

.Button:hover{
    background-color: #5f5f5f;
    color: white;
}

fieldset{
    justify-self: center;
    align-self: center;
    margin-top: 20px;
    width: 70vw;
    padding: 50px 50px 50px 20px;
    border-radius: 20px;
    border-width: 5px;
    border-style: solid;
    border-color: #749482;
}

fieldset legend{
    text-align: center;
    margin: 0;
    width: auto;
    background-color: rgb(255, 255, 255);
    padding: 10px 10px 10px 10px;
    border-radius: 20px;

    font-weight: bold
}

fieldset label{
    margin: 0px;
    font-weight: 600;
}

fieldset input, fieldset select{
    width: 50%;
    margin-bottom: 20px;
    margin-top: 5px;
    height:30px;
    border-radius: 10px;
    font-size: large;
}

#Img, #Img2{
  border-radius: 0px;
  margin-left: 10px;
  height: auto;
}

#CoverImage{
    max-width: 30%;
}

#seriesContainer, #seriesContainer2{
    justify-content: center;
    display: flexbox;
    flex-direction: row;
    gap: 10%;
}

#seriesContainer select, #seriesContainer input,
#seriesContainer2 select, #seriesContainer2 input{
    width: 80%;
}

.RatingField{
    justify-content: center;
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.RatingField div input, #YPub, #lang, #YPub2, #lang2{
    width: 100%;
}

#Desc, #Desc2 {
    white-space: pre;
    line-break: auto;
    max-height: 200px;
    height: 100%;
    width: 100%;
}

