/* Pour paramètres*/
#param:hover img {
    filter: brightness(0);
}

#param.active img {
    filter: brightness(0);
}
/* Page de paramètres */ 

.titreparametre{
    margin-right: 30px;
    margin-top: 5vmin;
}

.lineP{
    width: 230px;
    height: 4px;
    background: #000000;
    margin: 1px;
    border-radius: 5px;
}

.parametres-page {
    max-width: 600px;
    margin: 0;
    padding: 40px 20px 80px 20px;
}

.page-title {
    font-weight: bold;
    display: inline-block;
    border-bottom: 4px solid #b82828;
    padding-bottom: 5px;
    margin-bottom: 40px;
}

.parametres-container {
    margin-top: 20px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}


.user-icon {
    text-align: center;
    margin: 30px 0;
}

.user-icon img {
    width: 80px;
    height: 80px;
}

.parametres-form {
    margin-top: 30px;
}

.form-row-par {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 1000px;
}

.form-row-par label {
    font-weight: bold;
    min-width: 200px;
    margin-left: 15vmin;
}

.form-input-param {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f0f0f0;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-envoyer {
    background-color: #b82828;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-envoyer:hover {
    background-color: #8b1f1f;
}


.btn-notif {
    background-color: #8b1f1f;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-notif:hover{
    background-color: rgb(54, 53, 53);
}

.btn-retour {
    background-color: #575252;
    color: white;
    padding: 5px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-retour:hover{
    background-color: rgb(110, 0, 0);
}


.switch-container {
  display: flex;          
  align-items: center;    
  gap: 160px;              
}