.user-box {
    display: flex;
    flex-direction: column;
    height: 20%;
    width: 35%;
    min-width: max-content;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    justify-content: center;
}

.info-user {
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 5%;
    margin: 2%;
    text-align: center;
    justify-content: center;
    font-size: 100%;
}

.nom-prenom-user {
    display: flex;
    width: 100%;
    gap: 5%;
    margin: 0 auto;
    justify-content: center;
}

.modif-password {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.suppr-user {
    color: rgb(168, 0, 0);
    font-weight: bold;
    border: 2px solid #000;
    border-radius: 8px;
    height: 50px;
    min-width: max-content;
    margin: 5%;
    padding: 5px;
}

.disconnect {
    color: rgb(0, 0, 0);
    font-weight: bold;
    border: 2px solid #000;
    border-radius: 8px;
    height: 50px;
    min-width: max-content;
    margin: 5%;
}

.button-user {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    gap: 25%;
    align-items: center;
}

h4 {
    text-align: center;
}