* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
}

/* Header Styles */
.header {
    background: #0e1014;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 60px;
    width: 60px;
    background: url("../IconsAndImages/ls_no_text.svg") no-repeat center center / contain;
}
.headertext {
    height: 55px;
}
.logout-btn {
    padding: 10px 20px;
    background-color: #4c9aff;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.logout-btn:hover {
    background-color: #348fd3;
}

.logout-btn:active {
    background-color: #2a78b4;
}

/* Sidebar Styles */
.menu-lateral {
    width: 250px;
    height: calc(100% - 40px);
    background: #f5f5f5;
    padding: 20px;
    border-right: 1px solid #ddd;
    transition: width 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-lateral.reduit {
    width: 20px;
}

.element-menu {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    margin: 5px 0;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.element-menu img {
    width: 20px;
    height: 20px;
}

.element-menu span {
    margin-left: 10px;
}

.menu-lateral.reduit .element-menu {
    justify-content: center;
}

.menu-lateral.reduit .element-menu span {
    display: none;
}

.toggle-bouton {
    display: block;
    cursor: pointer;
}

.bouton-bas {
    cursor: pointer;
    display: flex;
    justify-content: left;
}



/* Footer Styles */
footer {
    height: 60px;
    background: #0e1014;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}