#bilan{
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1818187e;
    color: white;
    backdrop-filter: blur(10px);
}

#bilan > .title{
    font-size: 1.5em; 
}

#bilan > .content{
    width: 80%;
    max-width: 1000px;
    display: flex;
    flex-flow: column;
}

#bilan > .content > .competence-list{
    overflow-y: scroll;
    max-height: 70vh;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.category-title {
    font-size: 1em;
    font-weight: bold;
    flex: 6 0 60%;
    margin-top: 10px;    
    padding-right: 100px;
}

.header {
    display: flex;
    padding-right: 16px;
}

.header > div {
    flex: 1.5 0 15%;;
}

.error-label, .attempt-label {
    font-weight: bold;
    text-align: center;
}

.competence-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.competence-item > .competence {
    flex: 7 0 70%;
    text-align: start;
    padding-left: 150px;
}

.competence-item > span {
    flex: 1.5 0 15%;
    text-align: center;
}


#bilan > .content > .continue-button {
    align-self: flex-end;
    margin-top: 10px; 
    padding: 10px; 
    background-color: #0b6ceb; 
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#bilan > .content > .continue-button:hover {
    background-color: #235da8; 
}

