body {
  background-color: #000000;
}

.card {
  width: 18rem;
  margin: 20px;
  background-color: #333333;
  border: 1px solid #444444;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.card-img-top {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.card-body {
  padding: 1rem;
  color: #fff;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-text {
  font-size: 1rem;
  color: #ccc;
}

.list-group {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-group-item {
  padding: 0.5rem;
  border-bottom: 1px solid #555;
}

.list-group-item:last-child {
  border-bottom: none;
}

.show-details-btn,
.update-product-btn,
.delete-product-btn {
  background-color: rgb(0, 0, 0);
  color: white;
  text-shadow: -2px 2px 10px black;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.show-details-btn:hover,
.update-product-btn:hover,
.delete-product-btn:hover {
  background-color: rgb(255, 0, 0);
  text-shadow: -2px 2px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.show-details-btn:active,
.update-product-btn:active,
.delete-product-btn:active {
  background-color: darkorange;
  transform: translateY(2px);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
