.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1040;
    transition: opacity 0.3s;
}
.sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.3);
    z-index: 1050;
    padding: 1rem;
    transform: translateX(-110%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.content-sidebar {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.sidebar-header{
    width: 100%;
}
.sidebar.show {
    transform: translateX(0);
}
.content-sidebar-img{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sidebar-user-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.sidebar-user-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Poppins", serif;
}
.sidebar-user-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-align: center;
}
.sidebar-user-role {
    color: #888;
    font-style: italic;
}
.sidebar-edit-profile {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
}
.sidebar-edit-profile:hover {
    text-decoration: underline;
}
.sidebar-logout-btn {
    width: 200px;
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    align-self: stretch;
    position: absolute;
    bottom: 20px;
}
