.container {
  display: flex;
  min-height: 100vh;
}


.main-content {
  width: 80%;
  padding: 20px;
}

header h1 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: right;
}

hr {
  margin-bottom: 20px;
}

.add-product {
  background-color: #666;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-bottom: 20px;
  cursor: pointer;
  float: right;
}

.add-product:hover {
  background-color: #555;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

table th, table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 16px;
}

table th {
  background-color: #f5f5f5;
}

table img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border: 1px solid #888;
  border-radius: 5px;
}

/* Button styles for Edit, Deactivate, Delete */
.edit, .deactivate, .delete {
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 3px;
  margin: 0 5px;
}

.edit {
  background-color: #4CAF50;
}

.edit:hover {
  background-color: #45A049;
}

.deactivate {
  background-color: #FF5722;
}

.deactivate:hover {
  background-color: #E64A19;
}

.delete {
  background-color: #F44336;
}

.delete:hover {
  background-color: #D32F2F;
}


.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 10px;
}

.pagination a {
  color: #333;
  padding: 10px 15px;
  margin: 0 5px;
  text-decoration: none;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
  background-color: #e9e9e9;
  color: #000;
}

.pagination a.active {
  background-color: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

.pagination a.disabled {
  background-color: #f1f1f1;
  color: #999;
  cursor: not-allowed;
  border-color: #ddd;
}
