.selling-product-page {
  padding: 24px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

/* Only title, no report button */
.header-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

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

.table-container {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
}

.product-table thead {
  background: #f0f0f0;
  font-weight: 600;
}

.product-table th,
.product-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.product-table tbody tr:hover {
  background: #fafafa;
}

.out-stock {
  color: red;
  font-weight: bold;
}

/* Action Menu */
.action-menu {
  position: relative;
  display: inline-block;
}

.menu-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
}

.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  min-width: 120px;
  z-index: 1000;
}

.dropdown a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.dropdown a:hover {
  background: #f5f5f5;
}

.action-menu:hover .dropdown {
  display: block;
}
