/* ─── Satellite Map Confirm ──────────────────────────────────── */
.confirm-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Gold pin */
.map-pin {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,162,39,0.4), 0 3px 10px rgba(0,0,0,0.5);
  cursor: pointer;
}

/* Custom zoom / center controls */
.map-controls {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px;
}
.map-ctrl-btn {
  width: 32px;
  height: 32px;
  background: #181818;
  border: 1px solid #383838;
  border-radius: 7px;
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.map-ctrl-btn:hover {
  background: #202020;
  border-color: var(--gold);
  color: var(--gold);
}

/* Custom popup */
.map-popup .leaflet-popup-content-wrapper {
  background: #181818;
  border: 1px solid #2c2c2c;
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.55);
  padding: 0;
}
.map-popup .leaflet-popup-content {
  margin: 0;
}
.map-popup-inner {
  padding: 9px 32px 9px 14px;
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
}
.map-popup .leaflet-popup-tip {
  background: #181818;
}
.map-popup .leaflet-popup-close-button {
  color: #777 !important;
  font-size: 16px !important;
  top: 4px !important;
  right: 6px !important;
}
.map-popup .leaflet-popup-close-button:hover {
  color: #f0f0f0 !important;
}

/* ─── Theme Toggle ───────────────────────────────────────────── */
.theme-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-lite);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.theme-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.82rem;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.theme-btn:hover { color: var(--text); background: var(--surface2); }
.theme-btn.active {
  background: var(--gold-dim);
  color: var(--gold-light);
  font-weight: 600;
  border: 1px solid var(--gold-border);
}

/* ─── Admin Login Overlay ────────────────────────────────────── */
.admin-login-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.admin-login-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ─── Logo Upload ────────────────────────────────────────────── */
.logo-upload-area {
  border: 1.5px dashed var(--border-lite);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  overflow: hidden;
  background: var(--surface);
}
.logo-upload-area:hover,
.logo-upload-area.drag-over {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.logo-upload-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 1.25rem;
}
.logo-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-sec);
  font-size: 0.875rem;
  text-align: center;
}
.logo-upload-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.logo-upload-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.logo-preview-img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
}

/* ─── Address Autocomplete Dropdown (OpenStreetMap) ─────────── */
.ac-wrap {
  position: relative;
  width: 100%;
}
.ac-wrap input { width: 100%; }

.ac-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #181818;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  list-style: none;
  overflow: hidden;
  z-index: 999;
  max-height: 280px;
  overflow-y: auto;
}
.ac-dropdown.open { display: block; }

.ac-item {
  padding: 10px 14px;
  cursor: pointer;
  border-top: 1px solid #222;
  transition: background 0.14s;
}
.ac-item:first-child { border-top: none; }
.ac-item:hover,
.ac-item.active { background: #202020; }

.ac-main {
  display: block;
  color: #f0f0f0;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ac-sub {
  display: block;
  color: #777;
  font-size: 0.78rem;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Dark mode (default) ─────────────────────────────────────── */
:root {
  --black:       #080808;
  --dark:        #101010;
  --surface:     #181818;
  --surface2:    #242424;
  --border:      #303030;
  --border-lite: #404040;
  --text:        #f2f2f2;
  --text-sec:    #b8b8b8;
  --text-muted:  #787878;
  --gold:        #c9a227;
  --gold-light:  #e2b93b;
  --gold-dark:   #a88018;
  --gold-dim:    rgba(201,162,39,0.12);
  --gold-border: rgba(201,162,39,0.35);
  --white:       #ffffff;
  --error:       #e05252;
  --success:     #52c47a;
  --radius:      10px;
  --radius-sm:   6px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
  --card-bg:     var(--surface);
}

/* ── Light mode ──────────────────────────────────────────────── */
html[data-theme="light"] {
  --black:       #f5f5f5;
  --dark:        #ebebeb;
  --surface:     #ffffff;
  --surface2:    #f0f0f0;
  --border:      #d8d8d8;
  --border-lite: #c4c4c4;
  --text:        #111111;
  --text-sec:    #444444;
  --text-muted:  #777777;
  --gold:        #b08a14;
  --gold-light:  #c9a227;
  --gold-dark:   #8a6a0a;
  --gold-dim:    rgba(176,138,20,0.10);
  --gold-border: rgba(176,138,20,0.30);
  --white:       #111111;
  --error:       #cc3333;
  --success:     #2d8f50;
  --card-bg:     #ffffff;
}

html {
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
}
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ────────────────────────────────────────────── */
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 600; letter-spacing: -0.015em; }
h3 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-sec); }

.gold { color: var(--gold); }
.muted { color: var(--text-muted); font-size: 0.85rem; }

/* ─── Layout ────────────────────────────────────────────────── */
.app-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--dark);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1.5rem 4rem;
}

.quote-card {
  width: 100%;
  max-width: 640px;
}

/* ─── Progress ──────────────────────────────────────────────── */
.progress-wrap {
  margin-bottom: 2.5rem;
}

.progress-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border-lite);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.step-dot.active {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold);
}

.step-dot.done {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  transition: var(--transition);
  margin-top: 14px; /* vertically center line with the dot (28px / 2) */
}

.step-line.done { background: var(--gold); }

.progress-step span {
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.progress-step span.active { color: var(--gold); }

/* ─── Steps ─────────────────────────────────────────────────── */
.step { display: none; }
.step.active {
  display: block;
  animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-header {
  margin-bottom: 2rem;
}

.step-header p {
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

/* ─── Forms ─────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.4rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-sec);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-lite);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

input:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

input::placeholder { color: var(--text-muted); }

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.input-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* ─── Toggle (yes/no) ───────────────────────────────────────── */
.toggle-group {
  display: flex;
  gap: 0.75rem;
}

.toggle-btn {
  flex: 1;
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border-lite);
  border-radius: var(--radius-sm);
  color: var(--text-sec);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.toggle-btn:hover { border-color: var(--border-lite); background: var(--surface2); }
.toggle-btn.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold);
}

/* ─── Terrain Cards ─────────────────────────────────────────── */
.terrain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.terrain-card {
  background: var(--surface);
  border: 1px solid var(--border-lite);
  border-radius: var(--radius-sm);
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.terrain-card:hover { background: var(--surface2); }
.terrain-card.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.terrain-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.terrain-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.terrain-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.terrain-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

.terrain-card.selected .terrain-name { color: var(--gold); }

/* ─── Frequency Cards ───────────────────────────────────────── */
.freq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.freq-card {
  background: var(--surface);
  border: 1px solid var(--border-lite);
  border-radius: var(--radius-sm);
  padding: 1rem 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.freq-card input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}

.freq-card:hover { background: var(--surface2); }
.freq-card.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.freq-label { font-weight: 600; font-size: 0.9rem; }
.freq-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.25rem; }
.freq-card.selected .freq-label { color: var(--gold); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  width: 100%;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,162,39,0.25);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

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

.btn-outline:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.btn-ghost {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-ghost:hover { color: var(--text-sec); }

.btn-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-back {
  background: var(--surface);
  border: 1px solid var(--border-lite);
  color: var(--text-sec);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-back:hover { background: var(--surface2); color: var(--text); }

.btn-next { flex: 1; }

/* ─── Error / Loading ───────────────────────────────────────── */
.field-error {
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 0.35rem;
  display: none;
}

.field-error.visible { display: block; }

.loading-inline {
  display: none;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.loading-inline.visible { display: flex; }

.spinner {
  width: 16px; height: 16px;
  border: 2px solid var(--border-lite);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  display: none;
}

.alert.visible { display: block; }
.alert-error { background: rgba(224,82,82,0.1); border: 1px solid rgba(224,82,82,0.3); color: #f08080; }
.alert-success { background: rgba(82,196,122,0.1); border: 1px solid rgba(82,196,122,0.3); color: #7ddea0; }

/* ─── Address Verified Tag ──────────────────────────────────── */
.address-verified {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: rgba(82,196,122,0.08);
  border: 1px solid rgba(82,196,122,0.25);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #7ddea0;
  margin-top: 0.75rem;
}

.address-verified.visible { display: flex; }

/* ─── Quote Result ──────────────────────────────────────────── */
.quote-header {
  text-align: center;
  margin-bottom: 2rem;
}

.quote-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.quote-amount {
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.quote-amount .per-visit { font-size: 0.3em; font-weight: 400; color: var(--text-muted); letter-spacing: 0; }

.quote-monthly {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.quote-breakdown {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.breakdown-title {
  padding: 0.85rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.breakdown-row:last-child { border-bottom: none; }
.breakdown-row .label { color: var(--text-sec); }
.breakdown-row .value { font-weight: 500; color: var(--text); }
.breakdown-row.total { background: var(--surface2); }
.breakdown-row.total .label { color: var(--text); font-weight: 600; }
.breakdown-row.total .value { color: var(--gold); font-weight: 700; font-size: 1rem; }


.quote-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn-secure {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  padding: 1rem;
  font-size: 1.05rem;
}

.btn-secure:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 30px rgba(201,162,39,0.3);
  transform: translateY(-2px);
}

/* ─── Divider ───────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 1.75rem 0;
}

/* ─── Confirm Modal ─────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}

.modal-backdrop.visible { opacity: 1; pointer-events: all; }

.modal {
  background: var(--surface);
  border: 1px solid var(--border-lite);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  transform: scale(0.95);
  transition: transform 0.25s;
}

.modal-backdrop.visible .modal { transform: scale(1); }

.modal h2 { margin-bottom: 0.5rem; }
.modal p { margin-bottom: 1.5rem; }
.modal-actions { display: flex; gap: 0.75rem; flex-direction: column; }

/* ─── No Service ────────────────────────────────────────────── */
.no-service-box {
  text-align: center;
  padding: 3rem 2rem;
}

.no-service-icon { font-size: 3rem; margin-bottom: 1rem; }
.no-service-box h2 { margin-bottom: 0.5rem; }
.no-service-box p { margin-bottom: 1.5rem; }

/* ─── Admin Styles ──────────────────────────────────────────── */
.admin-layout {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.admin-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.admin-section-header {
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--surface2);
}

.admin-section-body { padding: 1.4rem; }

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.admin-row:last-child { border-bottom: none; }
.admin-row label { margin: 0; text-transform: none; font-size: 0.9rem; color: var(--text); }

.admin-row input[type="number"],
.admin-row input[type="text"] {
  width: 140px;
  text-align: right;
}

.tier-table { width: 100%; border-collapse: collapse; }
.tier-table th {
  text-align: left;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0 0.5rem 0.75rem;
  font-weight: 500;
}
.tier-table td { padding: 0.4rem 0.5rem; }
.tier-table input { text-align: right; }

.admin-save-bar {
  position: sticky;
  bottom: 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.save-status { font-size: 0.85rem; color: var(--text-muted); }
.save-status.saved { color: var(--success); }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 500px) {
  .topbar { padding: 1rem; }
  .terrain-grid { grid-template-columns: 1fr; }
  .freq-grid { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-row input[type="number"],
  .admin-row input[type="text"] { width: 110px; }
}
