.recent-order-product-title,
.top-selling-product-title {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Giới hạn tối đa 2 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden; /* Ẩn phần dư */
  text-overflow: ellipsis; /* Hiển thị dấu "..." */
  max-width: 130px; /* Giới hạn chiều rộng */
  word-wrap: break-word;
}

/* Định dạng container chứa ảnh */
.product-thumbnail-recent-orders {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background-color: #ddd; /* Màu xám nhẹ */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative; /* Giữ ảnh đúng vị trí */
}

/* Khi ảnh tải về, ẩn placeholder */
.product-thumbnail-recent-orders img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Đảm bảo ảnh hiển thị tốt */
  border-radius: 3px;
  display: none; /* Ẩn ảnh ban đầu */
}

#recent-orders-container table {
  width: 100%;
  border-collapse: collapse; /* Đảm bảo viền không bị đúp */
}

#recent-orders-container th,
#recent-orders-container td {
  border: 1px solid var(--white-alpha-10); /* Viền màu xám nhẹ */
  padding: 10px; /* Tạo khoảng cách giữa nội dung và viền */
  text-align: left; /* Căn lề văn bản */
  font-size: 14px;
  font-family: Arial, sans-serif;
}

#recent-orders-container th {
 
  font-weight: bold;
  padding: 12px;
 
}
#recent-orders-container td {
  vertical-align: middle; /* Giữ nội dung căn giữa theo chiều dọc */
}

/* Nếu muốn các số căn phải */
#recent-orders-container td:nth-child(4),
#recent-orders-container td:nth-child(5),
#recent-orders-container td:nth-child(6),
#recent-orders-container td:nth-child(7) {
  text-align: right; /* Căn phải cho cột số liệu */
}

.order-pagination,
.bookmark-pagination,
.my3dmodel-pagination,
.recentorders-pagination,
.ContactList-pagination,
.LoadDeletion-pagination,
.OrderAdminList-pagination,
.WithdrawalsList-pagination,
.TopSelling-pagination,
.comment-pagination
 {
  margin-top: 20px;
  text-align: center;
}

.order-page-btn,
.bookmark-page-btn,
.my3dmodel-page-btn,
.recentorders-page-btn,
.ContactList-page-btn,
.LoadDeletion-page-btn,
.OrderAdminList-page-btn,
.WithdrawalsList-page-btn,
.TopSelling-page-btn,
.comment-page-btn  
{
	padding: 8px 12px;
	margin: 0 2px;
    background: #ffffff00;
    color: #ddd;
 
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

.order-page-btn.active, 
.bookmark-page-btn.active,
.my3dmodel-page-btn.active,
.recentorders-page-btn.active,
.ContactList-page-btn.active,
.LoadDeletion-page-btn.active,
.OrderAdminList-page-btn.active,
.WithdrawalsList-page-btn.active,
.TopSelling-page-btn.active,
.comment-page-btn.active
{
  background-color: #6f6f6f;
  color: white;
  font-weight: bold;
}

.order-page-btn:hover
.bookmark-page-btn:hover
.my3dmodel-page-btn:hover
.recentorders-page-btn:hover,
.ContactList-page-btn:hover,
.LoadDeletion-page-btn:hover,
.OrderAdminList-page-btn:hover
.WithdrawalsList-page-btn:hover,
.TopSelling-page-btn:hover,
.comment-page-btn:hover
 {
  background-color: #d1d1d1;
}


.dots {
  padding: 8px 12px;
  margin: 0 4px;
  font-weight: bold;
  color: #555;
}

/* Định dạng container để tránh bị lỗi xuống hàng */
.product-cell-recent-orders {
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: center; /* Hoặc flex-start nếu muốn trái */
  font-family: Arial, sans-serif;
}

.date-range-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.filter-toolbar label {
  font-weight: bold;
  font-size: 14px;
  color: #ddd;
}


.filter-toolbar input[type="text"] {
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid var(--white-alpha-10);
  border-radius: 4px;
  width: 120px;
  box-sizing: border-box;
}

button#clear-search-recent-order-button {
    padding: 0;
    margin: 0;
    background-color: #ff000000;
}

.filter-toolbar button {
    padding: 6px 10px;
    font-size: 14px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


.search-wrapper {
  position: relative;
  display: inline-block;
}

#search-recent-order {
  padding-right: 30px; /* Chừa chỗ bên phải cho nút ✖ */
  font-size: 14px;
  width: 250px;
  padding: 6px 10px;
  border: 1px solid var(--white-alpha-10);
  border-radius: 4px;
}


#clear-search-recent-order-button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #999;
  font-size: 16px;
  cursor: pointer;
  display: none;
  padding: 0;
  line-height: 1;
}

button.clear-date-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    background-color: #ffffff00;
    color: white;
    display: none;
}