/* Main content styles */
main {
  padding: 20px 0;
}

/* Search and filter container */
.search-container {
  margin-bottom: 20px;
}

.search-filter-container {
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(242, 194, 0, 0.1);
  border: 1px solid #f2c200; /* Màu vàng đậm */
}

/* Search bar */
.search-bar {
  display: flex;
  margin-bottom: 15px;
}

.search-input-container {
  position: relative;
  flex-grow: 1;
  margin-right: 10px;
}

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}

.search-input {
  width: 100%;
  padding: 10px 10px 10px 35px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
}

.search-input:focus {
  border-color: #ffd700; /* Màu vàng chính */
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

.search-button {
  background-color: #ffd700; /* Màu vàng chính */
  color: #333;
  border: none;
  border-radius: 4px;
  padding: 0 15px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}

.search-button:hover {
  background-color: #f2c200; /* Màu vàng đậm */
  transform: translateY(-2px);
}

/* Category filter */
.category-filter {
  display: flex;
  flex-direction: column;
}

.category-label {
  font-weight: 600;
  margin-bottom: 10px;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-btn {
  background-color: #fff;
  border: 1px solid #ffd700; /* Màu vàng chính */
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}

.category-btn:hover {
  background-color: #ffeb99; /* Màu vàng nhạt */
}

.category-btn.active {
  background-color: #ffd700; /* Màu vàng chính */
  color: #333;
  border-color: #f2c200; /* Màu vàng đậm */
}

/* Product table container */
.product-table-container {
  margin-bottom: 20px;
}

.table-header {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #dee2e6;
  gap: 10px;
  background-color: #ffd700; /* Màu vàng chính */
  color: #333;
}

.table-header i {
  font-size: 20px;
  color: #6c757d;
}

.table-header h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.search-header i {
  color: #007bff;
}

.all-header i {
  color: #28a745;
}

.youtube-header,
.gmail-header,
.all-header,
.search-header {
  background-color: #ffd700; /* Màu vàng chính */
}

/* Table columns */
.table-columns {
  display: flex;
  padding: 10px 15px;
  background-color: #333;
  color: #ffd700; /* Màu vàng chính */
  border-bottom: 1px solid #dee2e6;
}

.column-header {
  font-weight: 600;
  font-size: 12px;
  color: #6c757d;
  text-transform: uppercase;
}

.product-column {
  flex: 3;
}

.price-column {
  flex: 1;
  text-align: center;
}

.category-column {
  flex: 1;
  text-align: center;
}

.seller-column {
  flex: 1;
  text-align: center;
}

/* Product list */
.product-list {
  max-height: 600px;
  overflow-y: auto;
}

/* Product item */
.product-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #dee2e6;
  background-color: white;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s;
  border: none;
}

.product-item:hover {
  background-color: #fffdf5; /* Màu nền nhẹ vàng */
}

.product-info {
  display: flex;
  flex: 3;
}

.product-icon {
  width: 50px;
  height: 50px;
  background-color: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  overflow: hidden;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-icon i {
  font-size: 24px;
  color: #6c757d;
}

.product-icon i.youtube-icon {
  color: #ff0000;
}

.product-icon i.gmail-icon {
  color: #d93025;
}

.product-details {
  flex-grow: 1;
}

.product-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.product-description {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #6c757d;
}

.meta-item i {
  font-size: 12px;
}

.star-icon {
  color: #ff9900; /* Màu cam vàng */
}

.bag-icon {
  color: #28a745;
}

.alert-icon {
  color: #dc3545;
}

.package-icon {
  color: #6c757d;
}

.price-cell {
  flex: 1;
  text-align: center;
  font-weight: 600;
  color: #ff6600; /* Màu giá sản phẩm */
}

.category-cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.category-badge {
  background-color: #ffeb99; /* Màu vàng nhạt */
  color: #333;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  color: #6c757d;
}

.quantity-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
}

.quantity-dot {
  width: 8px;
  height: 8px;
  background-color: #28a745;
  border-radius: 50%;
}

.quantity-value {
  font-size: 12px;
  color: #6c757d;
}

.seller-cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.seller-name {
  font-size: 14px;
  color: #212529;
}

/* Empty results */
.empty-results {
  padding: 30px;
  text-align: center;
  color: #6c757d;
  font-style: italic;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-width: 300px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  flex-direction: column;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.toast-description {
  font-size: 14px;
}

/* Pagination */
.pagination-container {
  margin-top: 20px;
  margin-bottom: 40px;
}

.pagination {
  display: flex;
  justify-content: center;
  padding: 15px;
}

.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 5px;
  border-radius: 4px;
  background-color: #ffd700; /* Màu vàng chính */
  color: #333;
  font-weight: 500;
  transition: all 0.2s;
}

.pagination-item:hover {
  background-color: #f2c200; /* Màu vàng đậm */
}

.pagination-item.active {
  background-color: #333;
  color: #ffd700; /* Màu vàng chính */
}

.pagination-item.page-number {
  font-size: 14px;
}

/* Product badges */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.badge-primary {
  background-color: #ffd700; /* Màu vàng chính */
  color: #333;
}

.badge-success {
  background-color: #d1e7dd;
  color: #198754;
}

.badge-warning {
  background-color: #ff9900; /* Màu cam vàng */
  color: #333;
}

.badge-danger {
  background-color: #f8d7da;
  color: #dc3545;
}

.badge-info {
  background-color: #cff4fc;
  color: #0dcaf0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .search-bar {
    flex-direction: column;
  }

  .search-input-container {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .table-columns {
    display: none;
  }

  .product-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-info {
    width: 100%;
    margin-bottom: 10px;
  }

  .price-cell,
  .category-cell,
  .seller-cell {
    width: 100%;
    text-align: left;
    margin-top: 5px;
  }

  .category-cell,
  .seller-cell {
    flex-direction: row;
    justify-content: flex-start;
  }
}
