body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00B7FF;
}

/* ===== Quotes dashboard layout ===== */

.qd-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2.5rem;
}

/* sticky header with Save button */
.qd-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}

.qd-title {
  font-size: 2.1rem;
  margin: 0;
}

.qd-count {
  margin: 0.75rem 0 1rem;
  font-size: 1rem;
}

.qd-saved {
  margin: 0 0 1rem;
  color: #0c7a24;
  font-weight: bold;
}

/* Save buttons (top and bottom share this class) */
.qd-save-btn {
  padding: 0.45rem 1.25rem;
  font-size: 0.95rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background: #1a73e8;
  color: #fff;
}

.qd-save-btn:hover {
  background: #185abc;
}

/* table + textareas */
.qd-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.qd-table th,
.qd-table td {
  padding: 0.35rem 0.5rem;
  vertical-align: top;
}

.qd-col-num,
.qd-num {
  width: 3rem;
  text-align: right;
  white-space: nowrap;
}

.qd-col-quote {
  text-align: left;
}

/* make the editors nice and wide */
.qd-textarea {
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 2.4rem;
  font-family: inherit;
  font-size: 0.95rem;
}

/* bottom actions row */
.qd-actions {
  margin-top: 1.5rem;
  text-align: left;
}