/* Barre supérieure */

.top-bar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    background-color: white;

    padding: 10px 15px;

    border-bottom: 1px solid #ddd;

}



.top-bar .title {

    font-size: 18px;

    font-weight: bold;

    text-align: center;

    flex: 1;

}



.top-icon {

    width: 24px;

    height: 24px;

    cursor: pointer;

}



/* Liste des paramètres */

.settings-list {

    list-style: none;

    padding: 0;

    margin: 0;

}



.settings-list li {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 20px;

    border-bottom: 1px solid #ddd;

    font-size: 16px;

    cursor: pointer;

    transition: background-color 0.3s;

}



.settings-list li:hover {

    background-color: #f0f8ff;

}



.settings-list .icon {

    font-size: 18px;

}



/* Barre de navigation */

.bottom-nav {

    display: flex;

    justify-content: space-around;

    align-items: center;

    background: white;

    border-top: 1px solid #ddd;

    padding: 10px 0;

    position: fixed;

    bottom: 0;

    width: 100%;

}



.nav-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #007bff;

    font-size: 14px;

    text-align: center;

}



.nav-item:hover {

    font-weight: bold;

}



.nav-icon {

    width: 40px;

    height: 40px;

    object-fit: contain;

    margin-bottom: 5px;

}