.main-layout {
    margin-left: 270px; /* Đẩy nội dung chính sang phải */
    padding: 20px;
    margin-top: 60px; 
    padding-bottom: 100px
}
.sidebar-nhanvien {
    position: fixed;
    left: 0;
    top: 70px; /* Đẩy xuống dưới header */
    height: calc(100vh - 80px); /* Không chạm vào footer */
    width: 250px;
    background-color: #469cf3;
    color: white;
    padding: 15px; /* Thêm padding cho đẹp */
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}
.profile-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}
.profile-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.profile-card h2 {
    font-size: 22px;
    color: #333;
}
.profile-card p {
    color: #777;
    margin-bottom: 10px;
}

/* 📌 Ẩn sidebar trên điện thoại mặc định */
@media (max-width: 768px) {
    .sidebar-nhanvien {
        top: 65px; /* Đẩy xuống để không chạm vào header */
        height: calc(100vh - 75px); /* Để không che footer */
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        
    }
    .sidebar-nhanvien.open {
        transform: translateX(0);
    }
    .main-layout {
        flex: 1; /* Chiếm phần còn lại của trang */
    margin-left: 270px; /* Để không bị che bởi sidebar */
    margin-top: 80px; /* Khoảng cách với header */
    padding: 20px;
    display: flex;
    flex-direction: column;
    }
}

/* 📌 Nút mở sidebar */
.sidebar-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    background-color: #469cf3;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1100;
}

/* 📌 Hiển thị nút sidebar trên điện thoại */
@media (max-width: 768px) {
    .sidebar-toggle {
        display: block;
    }
}

/* 📌 Giao diện profile */
.profile-container {
    text-align: center;
    margin-top: 20px;
}

.avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* 📌 Nút chuyển đổi giao diện */
.switch-container {
    text-align: center;
    margin: 20px 0;
}

.switch-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

/* 📌 Khi chuyển sang chế độ điện thoại */
.mobile-view .sidebar-nhanvien {
    transform: translateX(-100%);
}
