.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;
}
