html,body{
    font-family: 'Inter', sans-serif;
    background-color: #FEFEE2;; 
    height: 100%;
    margin: 0;
}
 .hidden-section {
    display: none;
  }
    .nav-link.active {
        background-color: #e0e0e0; 
        font-weight: bold;
        color: #007bff; 
        border-left: 4px solid #007bff; 
    }
.dashbord{
    display: grid;
    grid-template-columns: 300px 1fr;
    height: 100vh;
    gap: 20px;
}
.containsAdmin{
     width: 100%;
     height: 100vh;
     padding: 1.5rem;
     overflow-y: hidden;
   
}

h4{
    font-family: inherit,sans-serif;
    font-weight: bold;
    color: white;
    text-align: center;
    text-transform: uppercase;
    margin-top: 20px;
}
h1{
    font-family: inherit,sans-serif;
    font-weight: bold;
    color: #1f2937;
    text-align: start;
    text-transform: uppercase;
    margin-top: 30px;
}


.panneau{
    margin-top: 0;
    background-color: #1f2937;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 300px;
    margin-bottom: 0;
}
.panneau #mainNav{
   flex-grow: 1;
   padding: 1.5rem; 
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.nav-list{
    display: flex;
    flex-direction: column;
    gap: 0.25rem; 
    list-style: none;
    margin-top: 0;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.2s, color 0.2s;
    min-height: 60px; 
    box-sizing: border-box;
}
.nav-link:hover {
    background-color: #374151; 
    color: #c7d2fe; 
}

.nav-link:active {
    background-color: #374151;
    color: #a5b4fc; 
}
.nav-list li a {
    padding-left: 5px;
}

.deconnect{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.deconnect .buttn-decon{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color:#374151;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.5rem;
    transition: background-color 0.2s;
}
.buttn-decon:hover{
    background-color: #374151;
    color: #c7d2fe; 
}

.imgIcon {
    vertical-align: middle;
        margin-right: 8px; 
        width: 20px; 
        height: 20px;
}

.imgIcon:hover{
    background-color: #374151; 
    color: #c7d2fe; 
}