* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
}

/* Adjusting Page Layout */
.container-section {
  margin-top: -30px;
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px);
}

/* Container Styling */
.container {
  background-color: white;
  width: 76%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.dropdown {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  width: 190px;
}

/* Delete Button */
.delete-btn {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.delete-btn:hover {
  background-color: #e60000;
}

.delete-btn i {
  margin-right: 5px;
}

/* Horizontal Line */
hr {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

/* Content Section */
.content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.image img {
  width: 120px;
  height: auto;
}

.fields {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

.field-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.field {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.field label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #575d69;
}

.field input {
  width: 80px;
  padding: 5px;
  font-size: 16px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* Counter */
.counter {
  display: flex;
  align-items: center;
  gap: 5px;
}

.counter button {
  width: 25px;
  height: 25px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.counter button:hover {
  background-color: #0056b3;
}

/* Buttons */
.actions {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.btn {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn.back {
  background-color: #aaaaaa;
  position: relative;
  top: 13px;
  height: 43px;
}

.btn.next {
  background-color: #007bff;
  color: white;
}

.btn.next:hover {
  background-color: #0056b3;
}

.see-stuffing-btn {
  display: block;
  width: 150px;
  margin: 6px 5px;
  padding: 8px 18px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: 0.3s ease-in-out;
}

.see-stuffing-btn:hover {
  background-color: #52a7ed;
}
