:root {
  --navy: #0d1b2a;
  --navy2: #1a2d42;
  --blue: #1a6fd4;
  --blue-soft: #e8f1fb;
  --green: #1a9e6e;
  --green-soft: #e3f6ee;
  --amber: #d97706;
  --amber-soft: #fef3c7;
  --red: #dc2626;
  --red-soft: #fee2e2;
  --gray0: #f8f9fa;
  --gray1: #f1f3f5;
  --gray2: #e5e8ec;
  --gray3: #cdd2d9;
  --gray4: #8e98a4;
  --gray5: #4b5563;
  --text: #0d1b2a;
  --radius: 8px;
  --font: "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--gray0); color: var(--text); }
body { margin: 0; min-height: 100vh; font-family: var(--font); }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(13, 27, 42, .16);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}
.back-btn {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}
.brand-mark { font-size: 23px; font-weight: 700; }
.brand-mark span { color: var(--blue); }
.brand-sub { font-size: 10px; color: rgba(255,255,255,.45); }
.crumb { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 600; }
.top-actions { margin-left: auto; }
.icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 44px;
}

.navgrid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}
.navitem {
  min-height: 70px;
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px;
  text-align: left;
}
.navitem:hover, .navitem.on {
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(26,111,212,.1);
}
.navitem span { font-weight: 700; font-size: 14px; }
.navitem b { color: var(--gray4); font-size: 12px; font-weight: 600; }

.view { display: none; }
.view.on { display: block; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.eyebrow {
  margin: 0 0 5px;
  color: var(--gray4);
  font-size: 11px;
  font-weight: 700;
}
h1, h2, h3 { margin: 0; }
h1 { font-size: 28px; line-height: 1.15; }
h2 { font-size: 17px; }
h3 { font-size: 15px; }

.quick-search, .search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}
.quick-search { width: min(500px, 55vw); }
.quick-search input, .search-box input {
  width: 100%;
  min-width: 0;
  height: 42px;
  border: 1px solid var(--gray3);
  border-radius: var(--radius);
  padding: 0 13px;
  outline: none;
  background: #fff;
}
.search-box { margin-bottom: 14px; }
.quick-search button, .search-box button, .customer-loader button {
  height: 42px;
  min-width: 64px;
  white-space: nowrap;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,212,.12);
  outline: none;
}
button[type="submit"], .head-actions button, .work-buttons button, .section-head > button, .form-actions button, .text-btn {
  min-height: 40px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 16px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}
.secondary, .text-btn {
  background: #fff !important;
  color: var(--navy) !important;
  border: 1px solid var(--gray2) !important;
}
.danger {
  background: var(--red) !important;
  color: #fff !important;
  border: 1px solid var(--red) !important;
}
.text-btn { min-height: 32px; padding: 0 12px; }
.head-actions { display: flex; gap: 8px; }
.panel-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.kpi {
  background: #fff;
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  padding: 18px;
}
.kpi span { display: block; color: var(--gray4); font-size: 12px; font-weight: 600; margin-bottom: 8px; }
.kpi strong { font-size: 30px; line-height: 1; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  gap: 14px;
}
.panel {
  background: #fff;
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  padding: 16px;
}
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.search-panel {
  min-height: 320px;
}
.search-result-head {
  align-items: center;
}

.rows { display: flex; flex-direction: column; gap: 8px; }
.row-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  text-align: left;
  min-height: 72px;
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px 14px;
}
.row-card:hover { border-color: var(--blue); }
.row-title { display: block; font-weight: 700; font-size: 14px; }
.row-sub { display: block; color: var(--gray5); font-size: 12px; margin-top: 4px; overflow-wrap: anywhere; }
.badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 700;
  background: var(--gray1);
  color: var(--gray5);
}
.badge.green { background: var(--green-soft); color: var(--green); }
.badge.blue { background: var(--blue-soft); color: var(--blue); }
.badge.amber { background: var(--amber-soft); color: var(--amber); }
.badge.red { background: var(--red-soft); color: var(--red); }
.badge.gray { background: var(--gray1); color: var(--gray5); }

.schedule-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.month-controls, .schedule-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.month-controls button, .schedule-filters button {
  min-height: 38px;
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  padding: 0 12px;
}
.month-controls button[data-calendar="prev"],
.month-controls button[data-calendar="next"] {
  width: 38px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
}
.month-controls strong {
  min-width: 128px;
  font-size: 18px;
  text-align: center;
}
.schedule-filters button.on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.calendar-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 14px;
  align-items: start;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.calendar-weekday {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--gray2);
  border-bottom: 1px solid var(--gray2);
  color: var(--gray5);
  font-size: 12px;
  font-weight: 700;
}
.calendar-weekday:nth-child(7n) { border-right: 0; }
.calendar-day {
  min-height: 118px;
  border: 0;
  border-right: 1px solid var(--gray2);
  border-bottom: 1px solid var(--gray2);
  background: #fff;
  color: var(--text);
  padding: 8px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.calendar-day:nth-child(7n) { border-right: 0; }
.calendar-day:hover { background: var(--gray0); }
.calendar-day.muted { background: #fbfcfd; color: var(--gray4); }
.calendar-day.selected {
  box-shadow: inset 0 0 0 2px var(--blue);
  background: var(--blue-soft);
}
.calendar-day.today .day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}
.day-number { font-weight: 800; font-size: 13px; }
.day-events {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.event-pill, .event-more {
  display: block;
  min-height: 21px;
  border-radius: 5px;
  padding: 3px 6px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-pill.blue { background: var(--blue-soft); color: var(--blue); }
.event-pill.amber { background: var(--amber-soft); color: var(--amber); }
.event-pill.green { background: var(--green-soft); color: var(--green); }
.event-pill.red { background: var(--red-soft); color: var(--red); }
.event-pill.gray, .event-more { background: var(--gray1); color: var(--gray5); }
.schedule-side {
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
  position: sticky;
  top: 86px;
  max-height: calc(100vh - 110px);
  overflow: auto;
}
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule-card {
  display: grid;
  gap: 7px;
  width: 100%;
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
  text-align: left;
}
.schedule-card:hover { border-color: var(--blue); }
.schedule-card strong {
  font-size: 14px;
  overflow-wrap: anywhere;
}
.schedule-address {
  color: var(--gray5);
  font-size: 12px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.schedule-time {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
.schedule-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.schedule-meta span {
  border-radius: 999px;
  background: var(--gray1);
  color: var(--gray5);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
}
.calendar-loading { grid-column: 1 / -1; }

.work-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.work-buttons button {
  height: 76px;
  text-align: left;
  background: var(--gray0);
  color: var(--text);
  border: 1px solid var(--gray2);
}

.gallery-area { min-height: 160px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}
.category-card {
  min-height: 180px;
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  background: #fff;
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.category-card img, .photo-grid img, .detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.category-thumb { display: block; height: 124px; background: var(--gray1); }
.category-info { display: block; padding: 12px; }
.category-info strong { display: block; font-size: 14px; }
.category-info span { display: block; margin-top: 5px; color: var(--gray4); font-size: 12px; }

.photo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.photo-grid, .detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 10px;
}
.photo-tile, .detail-photo {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.detail-section {
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  background: #fff;
  padding: 15px;
}
.detail-section.full { grid-column: 1 / -1; }
.kv { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--gray1); font-size: 13px; }
.kv:last-child { border-bottom: 0; }
.kv span:first-child { color: var(--gray4); font-weight: 700; }
.kv span:last-child { white-space: pre-wrap; overflow-wrap: anywhere; }

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
}
.tabs button {
  min-width: 86px;
  height: 38px;
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  background: #fff;
  color: var(--gray5);
  font-weight: 700;
}
.tabs button.on { background: var(--navy); color: #fff; border-color: var(--navy); }

.work-tools {
  display: grid;
  grid-template-columns: minmax(180px, .45fr) minmax(360px, 1.2fr) minmax(220px, .65fr);
  gap: 10px;
  align-items: stretch;
  margin-bottom: 14px;
}
.tool-card,
.selected-customer {
  min-height: 76px;
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
}
.tool-label {
  display: block;
  color: var(--gray4);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 8px;
}
.tool-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.tool-actions button {
  min-height: 40px;
  border-radius: var(--radius);
  padding: 0 14px;
  font-weight: 700;
}
.selected-customer {
  display: grid;
  gap: 3px;
  align-content: center;
}
.selected-customer.on { border-color: var(--blue); background: var(--blue-soft); }
.selected-customer span {
  color: var(--gray4);
  font-size: 11px;
  font-weight: 800;
}
.selected-customer strong { font-size: 14px; overflow-wrap: anywhere; }
.selected-customer small { color: var(--gray5); overflow-wrap: anywhere; }
.action-empty { min-height: 140px; display: flex; align-items: center; justify-content: center; }

.form-panel {
  background: #fff;
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  padding: 16px;
}
.customer-loader {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-bottom: 0;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.form-section {
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  padding: 14px;
  margin-top: 12px;
  background: var(--gray0);
}
.form-section:first-of-type { margin-top: 0; }
.form-section h3 { margin-bottom: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field.is-hidden { display: none; }
.field label { color: var(--gray5); font-size: 12px; font-weight: 700; }
.field input, .field select, .field textarea, .customer-loader input {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--gray3);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 9px 11px;
}
.field textarea { min-height: 96px; resize: vertical; }
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}
.uploader {
  grid-column: 1 / -1;
  border: 1px dashed var(--gray3);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--gray0);
  position: relative;
}
.upload-title {
  color: var(--gray5);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 7px;
}
.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.upload-control {
  min-height: 46px;
  border: 1px solid var(--gray3);
  border-radius: var(--radius);
  background: #fff;
  padding: 5px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.file-input:focus-visible + .upload-control {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,212,.12);
}
.upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.upload-name {
  color: var(--gray5);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.preview {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--gray2);
}
.preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.preview-image {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
}
.preview button[data-remove-photo] {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(13,27,42,.82);
  color: #fff;
}

.empty {
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  text-align: center;
  color: var(--gray4);
  font-weight: 700;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  text-align: center;
  transition: .18s ease;
  z-index: 30;
}
.toast.on { opacity: 1; transform: translate(-50%, 0); }
.toast.err { background: var(--red); }

.overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(13, 27, 42, .28);
  color: #fff;
  font-weight: 700;
  z-index: 40;
}
.overlay.on { display: flex; }
.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255,255,255,.32);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: no-preference) {
  .view.on { animation: viewIn .2s ease both; }
  .navitem, .row-card, .category-card, .photo-tile, .detail-photo,
  .calendar-day, .schedule-card, .form-panel, .selected-customer {
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
  }
  .navitem:hover, .row-card:hover, .category-card:hover, .schedule-card:hover {
    transform: translateY(-1px);
  }
  .form-panel, .panel, .detail-section, .schedule-side {
    animation: surfaceIn .22s ease both;
  }
}
@keyframes viewIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes surfaceIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 10, 16, .92);
  z-index: 50;
  padding: 24px;
}
.lightbox.on { display: flex; }
.lightbox figure { margin: 0; max-width: min(1100px, 88vw); max-height: 88vh; }
.lightbox img { max-width: 100%; max-height: 82vh; min-width: min(720px, 86vw); display: block; border-radius: var(--radius); object-fit: contain; background: #111; }
.lightbox figcaption { color: rgba(255,255,255,.68); text-align: center; margin-top: 10px; font-size: 13px; }
.light-close, .light-nav {
  position: fixed;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255,255,255,.13);
  color: #fff;
}
.light-close { top: 18px; right: 18px; width: 42px; height: 42px; font-size: 26px; }
.light-nav { top: 50%; width: 46px; height: 58px; transform: translateY(-50%); font-size: 42px; }
.light-nav.prev { left: 18px; }
.light-nav.next { right: 18px; }

@media (max-width: 860px) {
  .topbar { padding: 0 14px; gap: 12px; }
  body.can-go-back .back-btn { display: inline-flex; }
  .brand-sub, .crumb { display: none; }
  .shell { width: min(100% - 20px, 1180px); padding-top: 14px; }
  .navgrid {
    display: flex;
    gap: 8px;
    margin-inline: -10px;
    padding: 0 10px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .navgrid::-webkit-scrollbar { display: none; }
  .navitem {
    flex: 0 0 108px;
    min-height: 54px;
    padding: 10px 12px;
    justify-content: center;
    gap: 4px;
    scroll-snap-align: start;
  }
  .navitem span { font-size: 13px; }
  .navitem b {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .section-head { align-items: stretch; flex-direction: column; }
  .section-head > button { align-self: flex-start; }
  .quick-search, .search-box, .customer-loader { width: 100%; }
  .quick-search input, .search-box input { width: 100%; }
  .kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .detail-grid, .field-grid, .calendar-shell, .work-tools { grid-template-columns: 1fr; }
  .detail-section.full, .field.full { grid-column: auto; }
  .row-card { grid-template-columns: 1fr; }
  .schedule-side { position: static; max-height: none; }
}

@media (max-width: 520px) {
  .navitem { flex-basis: 96px; min-height: 52px; padding: 9px 10px; }
  h1 { font-size: 23px; }
  .kpi { padding: 14px; }
  .kpi strong { font-size: 25px; }
  .work-buttons { grid-template-columns: 1fr; }
  .tool-card, .selected-customer { min-height: 70px; }
  .upload-control { grid-template-columns: 1fr; }
  .upload-button { width: 100%; }
  .kv { grid-template-columns: 92px minmax(0, 1fr); }
  .calendar-grid { font-size: 12px; }
  .calendar-day { min-height: 86px; padding: 6px; }
  .event-pill, .event-more { font-size: 10px; padding-inline: 5px; }
  .month-controls strong { min-width: 112px; font-size: 16px; }
}
