/* WC Quote System — Account CSS */

.wcqs-account-wrap { max-width: 100%; }
.wcqs-account-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: #2c3e50; }

.wcqs-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.wcqs-badge-pending  { background: #fff3cd; color: #856404; }
.wcqs-badge-sent     { background: #d1ecf1; color: #0c5460; }
.wcqs-badge-accepted { background: #d4edda; color: #155724; }
.wcqs-badge-rejected { background: #f8d7da; color: #721c24; }
.wcqs-badge-expired  { background: #e2e3e5; color: #383d41; }

.wcqs-expired { color: #c0392b; font-size: 12px; }
.wcqs-actions { display: flex; gap: 4px; flex-wrap: wrap; }

.wcqs-items-row td { padding: 0 !important; }
.wcqs-items-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 10px;
}
.wcqs-items-row.open .wcqs-items-detail { max-height: 500px; padding: 10px; }

.wcqs-items-table { width: 100%; font-size: 12px; border-collapse: collapse; }
.wcqs-items-table th { background: #f1f1f1; padding: 6px 8px; text-align: left; font-weight: 600; }
.wcqs-items-table td { padding: 5px 8px; border-bottom: 1px solid #eee; }

.wcqs-account-notice {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
