#scrap-overlay {
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
#scrap-overlay.active {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
#scrap-overlay .content {
  background: white;
  border-radius: 18px;
  text-align: center;
  padding: 30px 20px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}
#scrap-overlay .content h2 {
  margin-top: 0;
  margin-bottom: 1.5em;
  font-size: 1.4em;
  color: #333;
  font-weight: 500;
}
#scrap-overlay .content .select-container {
  margin-bottom: 2em;
}
#scrap-overlay .content .select-container select.reason-select {
  width: 100%;
  height: 3.5em;
  font-size: 1.1em;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fcfcfc;
  padding: 0 10px;
  color: #444;
  appearance: auto;
}
#scrap-overlay .content .select-container select.reason-select:focus {
  border-color: #0056fb;
  outline: none;
}
#scrap-overlay .content .actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#scrap-overlay .content .actions button {
  width: 100%;
  padding: 15px;
  font-size: 1.1em;
  border-radius: 10px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#scrap-overlay .content .actions button.confirm {
  background-color: #0056fb;
  color: white;
}
#scrap-overlay .content .actions button.confirm:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}
#scrap-overlay .content .actions button.cancel {
  background-color: #f44336;
  color: white;
}
#scrap-overlay .content .actions button:active {
  transform: translateY(1px);
  box-shadow: none;
}

/*# sourceMappingURL=confirm-scrap.css.map */
