/* Copied from custom-quote-calculator plugin */
.cqc-material-card {
  background: #282828;
  border-radius: 12px;
  padding: 16px;
  margin: 8px;
  display: inline-block;
  min-width: 220px;
  max-width: 250px;
  vertical-align: top;
  text-align: center;
}
.cqc-material-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fff !important;
}

.cqc-price-row {
  display: flex;
  justify-content: space-between;
  margin: 4px 0;
  font-size: 13px;
}
.cqc-price-label {
  color: #fff;
}
.cqc-price-value {
  color: #fff;
}
.cqc-form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.cqc-form-row .southerncooler-form-group {
  flex: 1 1 0;
  min-width: 0;
}
#southerncooler-quote-form button {
  margin-top: 8px;
}
@media (max-width: 700px) {
  .cqc-form-row {
    flex-direction: column;
    gap: 8px;
  }
}

/* Total Sheets Display Styles */
.cqc-total-sheets {
  text-align: left;
}

.cqc-sheets-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.cqc-sheets-label {
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
}
.cqc-sheets-value {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
}
