*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #4d6f83;
  --surface: #ffffff;
  --border: #d0cfc4;
  --text: #353533;
  --text-muted: #6b7280;
  --accent: #d67147;
  --accent-hover: #dd9e5e;
  --danger: #dc2626;
  --success-bg: #d1fae5;
  --success-text: #065f46;
  --error-bg: #fee2e2;
  --error-text: #991b1b;
  --sidebar-w: 220px;
  --radius: 6px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  color: #000;
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---- Auth pages ---- */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow);
}

.auth-logo h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

.auth-logo h1 span {
  color: var(--text-muted);
  font-weight: 400;
}

.auth-footer {
  margin-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ---- App layout ---- */
.app-page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: var(--sidebar-w);
  background: #111111;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 24px 0;
}

.sidebar-logo {
  padding: 0 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo h2 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.sidebar-logo h2 span {
  font-weight: 400;
  opacity: 0.7;
}

.nav-links {
  list-style: none;
  margin-top: 16px;
  flex: 1;
}

.nav-links li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  border-left: 3px solid transparent;
  transition:
    background 0.15s,
    color 0.15s;
}

.nav-links li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.nav-links li a.active {
  color: #fff;
  border-left-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-footer {
  padding: 16px 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  padding: 32px 40px;
  min-width: 0;
  overflow-x: hidden;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.page-header h1 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.greeting {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.card h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ---- Stat grid ---- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 20px;
  box-shadow: var(--shadow);
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.stat-value {
  font-size: 22px;
  font-weight: 600;
}

/* ---- Forms ---- */
.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: inherit;
}

.field input,
.field select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.15s;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
}

.field input:disabled {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
  cursor: not-allowed;
}

.field input[type="radio"],
.field input[type="checkbox"] {
  width: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--radius);
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.15s,
    opacity 0.15s;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-danger:hover:not(:disabled) {
  opacity: 0.85;
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 4px 10px;
  font-size: 13px;
}

/* ---- Tables ---- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.data-table th {
  background: var(--bg);
  padding: 10px 16px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: #fafbfc;
}

/* ---- Badges ---- */
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.badge-active,
.badge-paid,
.badge-admin {
  background: #d1fae5;
  color: #065f46;
}

.badge-owner {
  background: #fef3c7;
  color: #92400e;
}

.badge-member {
  background: #e0e7ff;
  color: #3730a3;
}

.badge-open {
  background: #fef3c7;
  color: #92400e;
}

.badge-pending_email,
.badge-pending_checkout {
  background: #f3f4f6;
  color: #374151;
}

.badge-void,
.badge-canceled {
  background: #fee2e2;
  color: #991b1b;
}

.badge-overdue {
  background: #fef3c7;
  color: #92400e;
}

.badge-canceling {
  background: #ede9fe;
  color: #5b21b6;
}

.badge-suspended {
  background: #ffedd5;
  color: #9a3412;
}

/* ---- Banners ---- */
.banner {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
}

.banner-error {
  background: var(--error-bg);
  color: var(--error-text);
}

.banner-success {
  background: var(--success-bg);
  color: var(--success-text);
}

/* ---- States ---- */
.hidden {
  display: none !important;
}

.loading-state {
  color: #fff;
  padding: 40px 0;
}

.empty-state {
  color: var(--text-muted);
  font-size: 14px;
  padding: 16px 0;
}

.muted {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.modal-box {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.modal-box h2 {
  margin-bottom: 20px;
  font-size: 18px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ---- Checkout ---- */
.checkout-page {
  align-items: flex-start;
  padding-top: 48px;
}

.checkout-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.steps {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  background: var(--bg);
  color: #fff;
  border: 1px solid var(--border);
}

.step.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.plan-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
}

.plan-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.plan-option:hover {
  border-color: #9ca3af;
}

.plan-option.selected {
  border-color: var(--accent);
  background: #fff8f5;
}

.plan-option-name {
  font-weight: 600;
  font-size: 15px;
}

.plan-option-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  padding-left: 16px;
}

.plan-option-price {
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.plan-option-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.info-box {
  padding: 10px 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  font-size: 14px;
  color: #1d4ed8;
  margin-bottom: 16px;
}

.domain-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 12px;
}

.domain-field {
  flex: 1;
  margin-bottom: 0 !important;
}

.domain-status {
  font-size: 13px;
  white-space: pre-line;
  width: 100%;
  text-align: right;
}

.status-available {
  color: #065f46;
}

.status-unavailable {
  color: #991b1b;
}

.price-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin: 20px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 4px 0;
}

.price-row.total {
  font-weight: 600;
  font-size: 15px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
}

.summary-block {
  margin-bottom: 20px;
}

.summary-block h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.summary-list {
  list-style: none;
  font-size: 14px;
}

.summary-list li {
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.summary-list li:last-child {
  border-bottom: none;
}

.total-amount {
  font-size: 24px;
  font-weight: 700;
}

.step-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.step-actions .btn:first-child {
  flex: 0;
}

.step-actions .btn:last-child {
  flex: 1;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost-dark:hover {
  background: #d67147;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.stripe-element {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--surface);
}

.field-error {
  color: var(--danger);
  font-size: 13px;
  margin-top: 6px;
}

.field-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.success-message {
  text-align: center;
  padding: 20px 0;
}

.success-message h2 {
  margin-bottom: 12px;
}

.success-message h3 {
  margin-bottom: 8px;
}

.success-message p {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.success-message .btn {
  margin-top: 20px;
}

/* ---- Cores page ---- */
.code-block {
  background: #000;
  color: #e2e8f0;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 13px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
  overflow-wrap: break-word;
  line-height: 1.6;
}

/* Prevent license key column from blowing out the table width. */
.data-table td:first-child,
.data-table th:first-child {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.badge-available {
  background: #e0e7ff;
  color: #3730a3;
}

.badge-provisioning {
  background: #fef3c7;
  color: #92400e;
}

.badge-failed {
  background: #fee2e2;
  color: #991b1b;
}

.badge-decommissioned {
  background: #f3f4f6;
  color: #6b7280;
}

/* ---- Side-by-side fields ---- */
.field-row {
  display: flex;
  gap: 12px;
}

.field-row .field {
  flex: 1;
}

.field-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
}

.field-note {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

/* ---- Copy buttons ---- */
.copy-block {
  position: relative;
}

.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px 6px;
  line-height: 0;
  transition:
    background 0.15s,
    color 0.15s;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.copy-btn-success {
  background: rgba(16, 185, 129, 0.3) !important;
  color: #6ee7b7 !important;
}

.copy-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.copy-btn-sm {
  position: static;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 4px;
  line-height: 0;
  transition:
    background 0.15s,
    color 0.15s;
}

.copy-btn-sm:hover {
  color: #000;
  border-color: #000;
}

/* ---- Core addon toggles ---- */
.addon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.addon-checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
}

.addon-checkbox input[type="checkbox"] {
  cursor: pointer;
}

.addon-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  cursor: default;
}

.addon-info-icon {
  color: var(--text-muted);
  display: block;
}

.addon-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--surface);
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 10px;
  border-radius: 6px;
  width: 220px;
  white-space: normal;
  z-index: 100;
  pointer-events: none;
}

.addon-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--text);
}

.addon-info:hover .addon-tooltip,
.addon-info:focus .addon-tooltip {
  display: block !important;
}

.addon-save-status {
  font-size: 12px;
  color: #065f46;
}

.addon-confirm-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.addon-confirm-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- Addon modal rows ---- */
.addon-modal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.addon-modal-row:last-child {
  border-bottom: none;
}

.addon-modal-row-active,
.addon-modal-row-overdue,
.addon-modal-row-canceling,
.addon-modal-row-canceled {
  border-radius: var(--radius);
  padding: 10px 8px;
  margin: 0 -8px;
}

.addon-modal-row-active {
  background: #f0fdf4;
}

.addon-modal-row-overdue {
  background: #fffbeb;
}

.addon-modal-row-canceling {
  background: #f5f3ff;
}

.addon-modal-row-canceled {
  background: #fef2f2;
}

.addon-modal-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.addon-modal-name {
  font-size: 14px;
  font-weight: 500;
}

.addon-modal-badge {
  flex-shrink: 0;
}

.addon-modal-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.addon-modal-feedback {
  font-size: 12px;
  color: var(--text-muted);
  width: 100%;
  order: 10;
  padding-top: 2px;
}

.addon-modal-badge-available {
  background: #f3f4f6;
  color: #6b7280;
}

.manage-btn-wrap {
  display: inline-block;
  cursor: not-allowed;
}

.manage-btn-wrap .btn:disabled {
  pointer-events: none;
}

/* ---- Toggle switch ---- */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 20px;
  transition: background 0.2s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(16px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---- Billing breakdown table footer ---- */
.data-table tfoot td {
  padding: 12px 16px;
  border-top: 2px solid var(--border);
  font-size: 14px;
}

/* ---- Searchable country dropdown ---- */
.country-dropdown {
  position: relative;
}

.country-dropdown input[type="text"] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.15s;
}

.country-dropdown input[type="text"]:focus {
  outline: none;
  border-color: var(--accent);
}

.country-list {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 220px;
  overflow-y: auto;
  list-style: none;
  z-index: 50;
  margin: 0;
  padding: 4px 0;
}

.country-list li {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text);
}

.country-list li:hover {
  background: var(--bg);
  color: #fff;
}

/* ---- Checkout email field with tooltip ---- */
.checkout-email-wrap {
  position: relative;
  display: block;
}

.checkout-email-wrap input[type="email"] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: #f9fafb;
  color: var(--text-muted);
  cursor: not-allowed;
}

.checkout-email-tooltip {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--text);
  color: var(--surface);
  font-size: 12px;
  line-height: 1.4;
  padding: 7px 10px;
  border-radius: var(--radius);
  white-space: nowrap;
  z-index: 50;
  pointer-events: none;
}

.checkout-email-tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 16px;
  border: 5px solid transparent;
  border-bottom-color: var(--text);
}

.checkout-email-wrap:hover .checkout-email-tooltip {
  display: block;
}

/* ---- Billing address fields in checkout ---- */
.billing-address-field {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.15s;
}

.billing-address-field:focus {
  outline: none;
  border-color: var(--accent);
}

.billing-address-field:disabled {
  background: #f9fafb;
  color: var(--text-muted);
  cursor: not-allowed;
}

/* ---- intl-tel-input overrides ---- */
.iti {
  width: 100%;
  display: block;
}

.iti input[type="tel"],
.iti__tel-input {
  width: 100%;
  padding: 8px 12px 8px 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.iti input[type="tel"]:focus,
.iti__tel-input:focus {
  outline: none;
  border-color: var(--accent);
}

.iti__flag-container {
  top: 0;
  bottom: 0;
}
/* ---- Provisioning steps ---- */
.provision-steps {
  padding-left: 20px;
  margin: 0;
}

.provision-steps li {
  margin-bottom: 24px;
  line-height: 1.6;
}

.provision-steps li:last-child {
  margin-bottom: 0;
}

.provision-steps p {
  margin: 4px 0 0 0;
}

.mt-8 {
  margin-top: 8px;
}

/* ---- Detail list (key: value on same line) ---- */
.detail-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  margin: 0;
  padding: 0;
}

.detail-list dt {
  font-weight: 600;
  white-space: nowrap;
}

.detail-list dt::after {
  content: ":";
}

.detail-list dd {
  margin: 0;
}
