/* Container chứa 3 thanh ngang */
.hamburger-icon {
    width: 20px;         /* Độ rộng của 3 thanh ngang */
    height: 14px;        /* Tổng chiều cao của cụm thanh ngang */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;   
}

/* Vẽ từng thanh ngang */
.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;         /* Độ dày của thanh ngang */
    background-color: var(--text-muted, #6b7280); /* Màu sắc */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hiệu ứng khi hover vào nút */
.toggle-btn:hover .hamburger-icon span {
    background-color: var(--primary-color);
}

/* Định vị nút showSidebarBtn ở góc (như đã bàn ở bước trước) */
#showSidebarBtn {
    position: fixed;
    top: 25px;           /* Căn chỉnh cho khớp với logo Ai-Sen hồng */
    left: 20px;
    z-index: 100;
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 0px solid #dce2eb;  
    background: #ffffff; 
}