#products .unit-price-label {
  margin-left: 8px;
  font-size: 14px;
  color: #666;
}
#products .product-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#products .product-label {
  font-size: 16px;
  font-weight: bold;
  color: #444;
}

#products .remove {
  color: #888;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  padding: 0 6px;
  line-height: 1;
  transition: color 0.2s;
  text-align: right;
  background: none;
}
#products .product-inputs {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
body {
  font-family: 'Segoe UI', 'Hiragino Sans', Arial, sans-serif;
  background: #f7f7f7;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 400px;
  margin: 30px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 20px;
}
h1 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: normal;
}
#products .product {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  background: #f9f9fb;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
  padding: 16px 12px 12px 12px;
  border: 1px solid #e0e0e0;
  position: relative;
}

#products input[type="number"] {
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.2);
  padding: 12px 14px;
  outline: none;
  font-size: 16px;

  &:focus {
    border-color: #ff6f61; 
  }
}
button {
  font-size: 1em;
  cursor: pointer;
}
.btn {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  color: #fff;
  font-size: 1em;
  border-radius: 10px;
  transition: background 0.2s ease, opacity 0.15s ease;
}
.add-product {
  border: 1px solid #ff6f61;
  margin-bottom: 5px;
  color:#ff6f61;
  background: #fff;

  /* &:hover {
  background: #fff1ef;
  } */
}
.submit-btn {
  background: #ff6f61;
/* 
  &:hover {
    opacity: 0.9;
  } */
}
#result {
  margin-top: 20px;
  position: relative;
  min-height: 32px;
  text-align: center;
  display: flex;
  justify-content: center;
}
#result span {
  display: flex;
  text-align: center;
  font-size: 1em;
  white-space: nowrap;
  align-items: center
}
#result .clear-result-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888;
  font-size: 1.1em;
  cursor: pointer;
  padding: 2px 10px;
}
#result .big-winner {
  font-size: 1.5em;
  font-weight: bold;
  color: #ff6f61;
  vertical-align: middle;
  white-space: nowrap;
}
