/* WooCommerce stil tablice */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f4f4;
}

h2 {
  color: #333;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

th, td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

th {
  background-color: #0066CC;
  color: white;
  font-weight: 600;
}

tr:hover {
  background-color: #f9f9f9;
}

.product-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.status-badge {
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  background: #e0e0e0;
  text-transform: uppercase;
}

