.body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    width: fit-content;
    margin: 20px auto 20px auto;
    padding: 20px;
    font-family: 'Roboto';
    width: 400px;
}
.body h1{
    margin-bottom: 10px;
}
.body select, input{
    width: 90%;
    margin-bottom: 10px;
    padding: 5px;
}
.body label{
    padding-left: 5px;
    text-align: left;
    width: 90%;
}
.body label i {
    color: red;
}
.body button {
    width: auto;
    background: #00a2e8;
    width: auto;
    padding: 10px 30px;
    transition: all 0.3s;
    border-radius: 5px;

    font-weight: 700;
    font-size: 15px;
    font-family: 'Roboto';
    color: #F4F4F4;
}
.body button:hover {
    background: #005275;
} 

/* advise_container  */
.advise_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; 
    gap: 5px;
}

.advise_container_content {
    padding: 20px;
    border-radius: 8px;
    min-width: 300px;  
    min-height: 180px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgb(255, 255, 255);

}
.advise_container_content h2{
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
}
.advise_container_content li::marker {
    content: "• ";
    font-size: 18px;
}
.advise_container_content ul{
    padding-left: 10px;
}
.advise_container_content button{
    margin-top: 10px;
}





.notaccessible{
    background-color: #4e4e4e83 !important;
}
.notaccessible:hover{
    background-color: #4e4e4e83 !important;
}