/* Sidebar Wrapper - Xử lý phần nền và kích thước */
div[style*="width: 14%"] {
    background-image: none !important; /* Xóa ảnh nền cũ */
    background-color: #ffffff !important; /* Nền trắng */
    border-right: 1px solid #f0f0f0;
    width: 260px !important; /* Điều chỉnh lại độ rộng cho đẹp */
}

/* Ẩn lớp phủ opacity cũ */
.opacity { display: none; }

/* Font chữ và Layout cho Tabs */
.tabs {
    padding: 10px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.tab-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 4px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #64748b; /* Màu chữ xám nhạt */
    transition: all 0.2s ease;
}

/* Căn chỉnh Icons */
.tab-item i {
    width: 24px;
    font-size: 18px;
    margin-right: 15px;
    text-align: center;
}

/* Đổ màu Icons riêng biệt theo thứ tự nội dung của bạn */
.tab-item:nth-child(1) i { color: #3b82f6; } /* LifeSSO - Xanh dương */
.tab-item:nth-child(2) i { color: #10b981; } /* LifeESB - Xanh lá */
.tab-item:nth-child(3) i { color: #8b5cf6; } /* LifeLGSP - Tím */
.tab-item:nth-child(4) i { color: #f59e0b; } /* LifeDriver - Cam */
.tab-item:nth-child(5) i { color: #ef4444; } /* LifeSCP - Đỏ */
.tab-item:nth-child(6) i { color: #06b6d4; } /* LifeGIS - Xanh lơ */
.tab-item:nth-child(7) i { color: #6366f1; } /* Văn bản - Indigo */
.tab-item:nth-child(8) i { color: #6366f1; } /* Văn bản - Indigo */
.tab-item[data-name="Quản lý Menu"] i { color: #64748b; } /* Quản lý Menu - Gray */

/* Trạng thái Hover & Active */
.tab-item:hover {
    background-color: #f8fafc;
    color: #334155;
}

.tab-item.active {
    background-color: #f1f5f9; /* Nền xanh xám rất nhạt giống ảnh */
    color: #1e293b; /* Chữ đậm hơn */
    font-weight: 600;
}

/* Phần User Info ở dưới cùng */
.my-infor {
    position: absolute;
    bottom: 40px;
    left: 10px;
    right: 10px;
    background: #f8fafc;
    padding: 12px;
    border-radius: 16px;
    border: none !important;
}

.my-infor_user {
    display: flex;
    align-items: center;
    width: 100%;
}

.my-infor__image img {
    width: 42px;
    height: 42px;
    border-radius: 12px; /* Bo góc vuông như ảnh mẫu */
    object-fit: cover;
}

.currentUser-name {
    margin-left: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
}

/* Badge thông báo số lượng */
.badge {
    /* background-color: #ef4444; */
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));;
    font-size: 12px;
    /* font-weight: 700; */
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: auto; /* Đẩy sang phải */
    display: none; /* Ẩn khi không có số liệu */
}

/* Tiêu đề danh sách ứng dụng */
.apps-title {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8; /* Màu xám nhạt, in hoa nhẹ nhàng */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 20px 20px 5px 20px; /* Căn lề khớp với các tab bên dưới */
}