/* assets/shred-calc.css */
#shredding-quote-form {
  max-width: 600px;
  padding: 20px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 8px;
  margin: 20px auto;
}
#shredding-quote-form h3 {
  margin-top: 20px;
  font-size: 1.2em;
  color: #333;
}
.shred-item {
  margin-bottom: 12px;
}
.shred-item label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}
.shred-item input[type="number"] {
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#quote-output {
  margin-top: 20px;
  font-weight: bold;
  color: #1e7e34;
}
#quote-output button {
  margin-top: 10px;
  padding: 10px 16px;
  background: #007cba;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#quote-output button:hover {
  background: #005a8c;
}
