/* ============================================================
   SeeTheView.com — Main Stylesheet
   ============================================================ */

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

:root {
  --blue:       #2563EB;
  --blue-dark:  #1d4ed8;
  --blue-light: #eff6ff;
  --green:      #16a34a;
  --red:        #dc2626;
  --amber:      #d97706;
  --purple:     #7c3aed;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-300:   #d1d5db;
  --gray-500:   #6b7280;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --radius:     8px;
  --radius-lg:  12px;
  --shadow:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --nav-h:      64px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-900);
  background: var(--gray-50);
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ── Nav ──────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  min-height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 100%;
  height: 100%;
  padding: 0 20px;
}
.logo { display: flex; align-items: center; white-space: nowrap; }
.logo-img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { font-size: 14px; color: var(--gray-700); white-space: nowrap; }
.nav-links a:hover { color: var(--blue); text-decoration: none; }
.nav-actions { display: flex; gap: 8px; align-items: center; margin-left: auto; }
.nav-hamburger { display: none; background: none; border: none; font-size: 20px; cursor: pointer; padding: 6px; }


/* ── Autocomplete dropdown (shared) ──────────────────────────── */
.nav-autocomplete,
.hero-autocomplete {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 400;
  overflow: hidden;
}
.nav-autocomplete.open,
.hero-autocomplete.open { display: block; }

.ac-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background .1s;
  border-bottom: 1px solid var(--gray-100);
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover,
.ac-item.active { background: var(--blue-light); }
.ac-icon { font-size: 15px; flex-shrink: 0; width: 22px; text-align: center; }
.ac-text { display: flex; flex-direction: column; min-width: 0; }
.ac-label { font-size: 13px; font-weight: 500; color: var(--gray-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ac-sub   { font-size: 11px; color: var(--gray-500); margin-top: 1px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: #fff;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
  text-decoration: none;
}
.btn:hover { background: var(--gray-100); text-decoration: none; }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-danger { background: var(--red); color: #fff; border-color: var(--red); }
.btn-warning { background: var(--amber); color: #fff; border-color: var(--amber); }
.btn-ghost { background: transparent; border-color: transparent; }
.btn-ghost:hover { background: var(--gray-100); }
.btn-sm  { padding: 5px 12px; font-size: 13px; }
.btn-xs  { padding: 3px 8px;  font-size: 12px; }
.btn-lg  { padding: 11px 24px; font-size: 16px; }
.btn-full { width: 100%; }

/* ── Flash messages ──────────────────────────────────────── */
.flash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
}
.flash-success { background: #dcfce7; color: #15803d; border-bottom: 1px solid #bbf7d0; }
.flash-error   { background: #fee2e2; color: #b91c1c; border-bottom: 1px solid #fecaca; }
.flash-info    { background: #dbeafe; color: #1d4ed8; border-bottom: 1px solid #bfdbfe; }
.flash-close   { background: none; border: none; font-size: 16px; cursor: pointer; opacity: .6; padding: 0; color: inherit; }

/* ── Hero / Search ───────────────────────────────────────── */
.sponsor-top-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: #fefce8;
  border-bottom: 1px solid #fde68a;
}
.sponsor-top-bar img { max-height: 50px; }
.ad-badge {
  font-size: 10px;
  font-weight: 700;
  background: var(--amber);
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  flex-shrink: 0;
  letter-spacing: .05em;
}
.hero-search {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 20px 10px;
}
.hero-search h1 { font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.hero-search p  { font-size: 13px; color: var(--gray-500); margin-bottom: 10px; }
.search-form { display: flex; gap: 8px; margin-bottom: 12px; align-items: flex-start; }
.hero-search-inner { position: relative; flex: 1; }
.hero-search-inner .search-input { width: 100%; }
.search-input {
  flex: 1;
  padding: 9px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 15px;
  background: var(--gray-50);
  outline: none;
}
.search-input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(37,99,235,.12); }

.keyword-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.kw-pill {
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--gray-300);
  background: #fff;
  color: var(--gray-700);
  font-size: 13px;
  cursor: pointer;
  transition: all .15s;
}
.kw-pill:hover  { border-color: var(--blue); color: var(--blue); }
.kw-pill.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── Main layout ─────────────────────────────────────────── */
.main-layout {
  display: flex;
  height: calc(100vh - var(--nav-h) - 96px);
  min-height: 500px;
}
.map-container {
  width: 35%;
  flex-shrink: 0;
  background: #e8eff8;
  position: relative;
}
.sidebar {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--gray-200);
  background: var(--gray-100);
  overflow: hidden;
}

/* ── Sidebar tabs ────────────────────────────────────────── */
.sidebar-tabs { display: flex; border-bottom: 1px solid var(--gray-200); flex-shrink: 0; }
.stab {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  text-decoration: none;
}
.stab:hover { color: var(--blue); text-decoration: none; }
.stab.active { color: var(--blue); border-bottom-color: var(--blue); }

.sidebar-ad {
  padding: 8px 10px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.sidebar-ad img { max-height: 50px; }

.cam-list {
  flex: 1;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  align-content: start;
}

.add-cam-cta {
  padding: 12px 14px;
  border-top: 1px solid var(--gray-200);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-shrink: 0;
  font-size: 13px;
}

/* ── Camera cards ────────────────────────────────────────── */
.cam-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: #fff;
  cursor: pointer;
  transition: background .12s;
  overflow: hidden;
}
.cam-card:hover   { background: var(--gray-50); }
.cam-card.selected { background: var(--blue-light); box-shadow: inset 3px 0 0 var(--blue); }
.cam-thumb-wrap { width: 100%; flex-shrink: 0; }
.cam-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 0;
  background: #1e3a5f center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.live-dot {
  position: absolute;
  top: 3px;
  left: 3px;
  background: #ef4444;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  letter-spacing: .04em;
}
.play-btn { color: rgba(255,255,255,.85); font-size: 28px; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.cam-details { flex: 1; min-width: 0; padding: 8px 10px 10px; }
.cam-title { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cam-addr  { font-size: 12px; color: var(--gray-500); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cam-tags  { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 4px; }
.tag {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 500;
}
.cam-stats { display: flex; gap: 8px; margin-top: 4px; font-size: 11px; color: var(--gray-500); flex-wrap: wrap; }
.validated-badge { color: var(--green); font-weight: 600; }
.unvalidated { color: var(--gray-500); }

/* ── Load more / no results ──────────────────────────────── */
.no-results, .load-more-wrap {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: var(--gray-500);
  background: #fff;
}
.btn-load-more {
  display: inline-block;
  padding: 8px 22px;
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.btn-load-more:hover { border-color: var(--blue); color: var(--blue); }
.btn-load-more:disabled { opacity: .5; cursor: default; }

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 9px 20px;
  background: var(--gray-900);
  color: #d1d5db;
  font-size: 13px;
  flex-wrap: wrap;
}
.stats-bar strong { color: #fff; }
.stats-sponsor { margin-left: auto; }
.stats-sponsor a { color: #93c5fd; }

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--gray-500);
  line-height: 1;
  z-index: 10;
}
.modal-close:hover { color: var(--gray-900); }
.modal-header { padding: 16px 44px 0 18px; }
.modal-title  { font-size: 17px; font-weight: 700; }
.modal-sub    { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.modal-ad     { margin: 10px 0 0; text-align: center; }
.modal-ad img { width: 100%; max-height: 90px; object-fit: contain; }
.yt-wrap { position: relative; padding-top: 56.25%; background: #000; }
.yt-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.modal-body { padding: 12px 18px 20px; }
.modal-tags { margin-bottom: 10px; }
.modal-meta { width: 100%; font-size: 13px; margin: 10px 0; border-collapse: collapse; }
.modal-meta th { text-align: left; color: var(--gray-500); font-weight: 500; width: 110px; padding: 4px 0; vertical-align: top; }
.modal-meta td { padding: 4px 0; color: var(--gray-700); }
.modal-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

/* ── Individual cam page ─────────────────────────────────── */
.cam-page { max-width: 860px; margin: 0 auto; padding: 20px; }
.cam-page-ad { margin-bottom: 12px; }
.cam-page-ad img { max-height: 90px; width: 100%; object-fit: contain; }
.cam-page-title h1 { font-size: 22px; font-weight: 700; }
.cam-page-sub { font-size: 14px; color: var(--gray-500); margin: 4px 0 14px; }
.yt-fullpage { position: relative; padding-top: 56.25%; background: #000; border-radius: var(--radius-lg); overflow: hidden; }
.yt-fullpage iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.cam-page-body { margin-top: 18px; }
.cam-description { color: var(--gray-700); margin: 12px 0; line-height: 1.7; }
.cam-page-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

/* ── Cam page map ────────────────────────────────────────── */
.cam-page-map-wrap {
  margin: 16px 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
#cam-page-map { height: 300px; width: 100%; }
.cam-page-map-label {
  padding: 7px 12px;
  font-size: 12px;
  color: var(--gray-500);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.map-tooltip-this {
  font-weight: 700;
  font-size: 12px;
  background: #fff;
  border: 2px solid #d97706;
  color: #92400e;
  border-radius: 6px;
  padding: 3px 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

/* ── Auth pages ──────────────────────────────────────────── */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 120px); padding: 20px; }
.auth-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
}
.auth-card h1 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.auth-card p  { color: var(--gray-500); margin-bottom: 20px; font-size: 14px; }
.auth-card label { display: flex; flex-direction: column; gap: 5px; font-size: 14px; font-weight: 500; color: var(--gray-700); margin-bottom: 14px; }
.auth-card input[type=text],
.auth-card input[type=email],
.auth-card input[type=password],
.auth-card input[type=tel] {
  padding: 9px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 15px;
  width: 100%;
}
.auth-card input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.auth-alt { font-size: 13px; color: var(--gray-500); margin-top: 14px; text-align: center; }
.error-list { background: #fee2e2; border: 1px solid #fecaca; border-radius: var(--radius); padding: 10px 14px; margin-bottom: 16px; }
.error-list p { font-size: 13px; color: var(--red); }
.success-msg  { color: var(--green); font-size: 14px; margin-bottom: 14px; }
.error-msg    { color: var(--red);   font-size: 14px; margin-bottom: 14px; }

/* ── Forms (add-cam etc.) ────────────────────────────────── */
.page-content { max-width: 760px; margin: 0 auto; padding: 24px 20px; }
.page-content h1 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
fieldset { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px; margin-bottom: 18px; }
legend { font-size: 14px; font-weight: 700; padding: 0 8px; color: var(--gray-700); }
label { display: flex; flex-direction: column; gap: 5px; font-size: 14px; font-weight: 500; color: var(--gray-700); margin-bottom: 12px; }
label.checkbox-label { flex-direction: row; align-items: center; gap: 8px; }
input[type=text], input[type=email], input[type=url], input[type=tel],
input[type=number], input[type=password], input[type=date], input[type=search],
select, textarea {
  padding: 8px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  width: 100%;
  background: #fff;
  color: var(--gray-900);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
textarea { resize: vertical; }
.input-row { display: flex; gap: 8px; }
.input-row input { flex: 1; }
.field-row { display: flex; gap: 12px; flex-wrap: wrap; }
.field-row > label { flex: 1; min-width: 140px; }
.form-actions { display: flex; gap: 10px; margin-top: 8px; }
.hint { font-size: 12px; color: var(--gray-500); margin-bottom: 8px; }

.keyword-checks { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.kw-check { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 400; margin-bottom: 0; cursor: pointer; }
.kw-check input { width: auto; }

/* ── Dashboard ───────────────────────────────────────────── */
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.dash-header h1 { font-size: 22px; font-weight: 700; }
.dash-status { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-500); }
.dash-stats { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.stat-card { background: var(--gray-100); border-radius: var(--radius); padding: 14px 18px; flex: 1; min-width: 100px; }
.stat-num  { font-size: 26px; font-weight: 700; color: var(--gray-900); }
.stat-label{ font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.dash-section { margin-bottom: 28px; }
.dash-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dash-section h2 { font-size: 17px; font-weight: 700; }
.empty-state { text-align: center; padding: 40px 20px; color: var(--gray-500); }
.empty-state p { margin-bottom: 16px; }

/* ── Tables ──────────────────────────────────────────────── */
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { text-align: left; padding: 8px 10px; background: var(--gray-100); font-weight: 600; color: var(--gray-700); border-bottom: 2px solid var(--gray-200); white-space: nowrap; }
.admin-table td { padding: 8px 10px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.admin-table tr:hover td { background: var(--gray-50); }
.admin-table .action-btns { display: flex; gap: 4px; flex-wrap: wrap; }
.meta-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.meta-table th { text-align: left; padding: 7px 0; color: var(--gray-500); font-weight: 500; width: 130px; }
.meta-table td { padding: 7px 0; border-bottom: 1px solid var(--gray-100); }
.row-pending { background: #fefce8; }

/* ── Admin layout ────────────────────────────────────────── */
.admin-layout { display: flex; min-height: calc(100vh - 52px); }
.admin-nav {
  width: 180px;
  flex-shrink: 0;
  background: var(--gray-900);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.admin-nav strong { color: #fff; font-size: 13px; margin-bottom: 8px; display: block; }
.admin-nav a { color: #9ca3af; font-size: 14px; padding: 7px 10px; border-radius: 6px; text-decoration: none; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.1); color: #fff; }
.admin-content { flex: 1; padding: 24px; min-width: 0; }
.admin-content h1 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.admin-section { margin-bottom: 28px; }
.admin-section h2 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.admin-filter-bar { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.admin-filter-bar input, .admin-filter-bar select { width: auto; }

/* ── Badges ──────────────────────────────────────────────── */
.badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 7px; border-radius: 20px; }
.badge-green  { background: #dcfce7; color: #15803d; }
.badge-yellow { background: #fef9c3; color: #a16207; }
.badge-red    { background: #fee2e2; color: #b91c1c; }
.badge-gray   { background: var(--gray-100); color: var(--gray-500); }
.badge-purple { background: #ede9fe; color: #6d28d9; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--gray-900); color: #9ca3af; padding: 20px 0 0; }
.footer-sponsor { text-align: center; padding: 10px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-sponsor img { max-height: 60px; margin: 0 auto; }
.footer-inner { padding: 20px; }
.footer-brand { color: #fff; font-size: 14px; margin-bottom: 10px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.footer-links a { color: #9ca3af; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: #6b7280; }
.footer-copy a { color: #93c5fd; }

/* ── No results ──────────────────────────────────────────── */
.no-results { padding: 30px; text-align: center; color: var(--gray-500); font-size: 14px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 20px;
    z-index: 300;
  }
  .main-layout { flex-direction: column; height: auto; }
  .map-container { width: 100%; height: 240px; }
  .sidebar { width: 100%; height: auto; border-left: none; border-top: 1px solid var(--gray-200); }
  .cam-list { max-height: none; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .admin-layout { flex-direction: column; }
  .admin-nav { width: 100%; flex-direction: row; flex-wrap: wrap; padding: 10px 16px; }
  .field-row { flex-direction: column; }
  .auth-card { padding: 24px 18px; }
}
