:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --paper: #ffffff;
  --ink: #20221f;
  --muted: #6a716b;
  --line: #dfe4dc;
  --green: #1d6b4f;
  --green-2: #2f8c6a;
  --amber: #c98219;
  --red: #b13c37;
  --blue: #27638f;
  --shadow: 0 18px 42px rgba(31, 40, 35, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(29, 107, 79, 0.08), transparent 260px),
    var(--bg);
  color: var(--ink);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a.button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(39, 99, 143, 0.35);
  outline-offset: 2px;
}

#app-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 16px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(29, 107, 79, 0.18);
}

.brand h1 {
  margin: 0;
  font-size: clamp(1.35rem, 3.8vw, 2rem);
  line-height: 1.05;
}

.kicker {
  margin: 0 0 2px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.view-switch {
  display: flex;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.view-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 104px;
  padding: 0 14px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}

.view-tab.active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 14px rgba(29, 107, 79, 0.22);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  line-height: 1;
}

#app {
  display: grid;
  gap: 16px;
}

.panel {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-header h2,
.section-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.22;
}

.panel-header p,
.muted {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.panel-body {
  padding: 18px;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #3d453f;
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select,
.search-row input,
.search-row select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.button.warning {
  background: var(--amber);
  color: #fff;
}

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

.button.info {
  background: var(--blue);
  color: #fff;
}

.button.compact {
  min-height: 40px;
  padding: 0 12px;
  font-size: 0.88rem;
}

.button.full {
  width: 100%;
}

.button.big {
  min-height: 64px;
  font-size: 1.08rem;
}

.button:disabled,
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.4fr);
  gap: 16px;
  align-items: start;
}

.admin-section-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.admin-section-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-section-button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.admin-section-button.active {
  border-color: var(--green);
  background: #eef7f2;
  color: var(--green);
}

.admin-search {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
}

.project-list-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.project-table-row {
  display: grid;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.project-table-row:first-child {
  border-top: 0;
}

.active-projects .project-table-row {
  grid-template-columns: minmax(130px, 1fr) minmax(160px, 1.2fr) minmax(150px, auto) minmax(128px, auto);
}

.archived-projects .project-table-row {
  grid-template-columns: minmax(130px, 1fr) minmax(160px, 1.2fr) repeat(3, minmax(120px, auto));
}

.project-table-head {
  background: #f2f5f0;
  color: #3d453f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-table-row > div {
  min-width: 0;
  overflow-wrap: anywhere;
}

.project-link {
  min-height: 36px;
  padding: 0;
  background: transparent;
  color: var(--green);
  font-weight: 950;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.assignment-select {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  min-height: 86px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
}

.stat strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.22;
}

.project-card,
.surface-card,
.worker-row,
.photo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.project-card {
  overflow: hidden;
}

.project-card.closed {
  opacity: 0.78;
}

.project-main {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.project-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.project-title h3,
.surface-card h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.04rem;
}

.project-number {
  color: var(--green);
  font-weight: 900;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eef3ef;
  color: #2d3931;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-pill.done {
  background: #dff2e8;
  color: #176142;
}

.status-pill.problem {
  background: #f8e4e1;
  color: #9b302c;
}

.status-pill.progress {
  background: #fff1d5;
  color: #7b4a08;
}

.status-pill.missing {
  background: #e8eef5;
  color: #244c72;
}

.progress {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e7ece7;
}

.progress > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-2));
}

.assignment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.check-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 750;
}

.check-chip input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.worker-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 12px;
}

.worker-download,
.download-empty {
  width: 100%;
}

.download-empty {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px dashed #c9d2cb;
  border-radius: var(--radius);
  background: #fbfcfa;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.route-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.route-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.route-overview-item {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-left: 4px solid #8a968d;
  border-radius: var(--radius);
  background: #fbfcfa;
}

.route-overview-item.success {
  border-left-color: var(--green);
}

.route-overview-item.progress {
  border-left-color: var(--blue);
}

.route-overview-item.warning {
  border-left-color: var(--amber);
}

.route-overview-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.route-overview-item strong {
  overflow-wrap: anywhere;
  font-size: 0.98rem;
}

.route-maps {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #b9d7c8;
  border-radius: var(--radius);
  background: #f2faf5;
}

.route-maps-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.route-maps-heading h3 {
  margin: 0;
  font-size: 1rem;
}

.route-map-links {
  display: grid;
  gap: 8px;
}

.route-map-links .maps-route-button {
  width: 100%;
  min-height: 62px;
  padding: 8px 14px;
  text-align: center;
  line-height: 1.25;
}

.route-maps-note {
  margin: 0;
  color: #365345;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.4;
}

.work-start-button {
  min-height: 66px;
  font-size: 1.08rem;
}

.work-toolbar {
  display: grid;
}

.work-progress {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid #b9d7c8;
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  background: #f2faf5;
}

.work-progress strong {
  font-size: 1.05rem;
}

.work-progress span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.work-current-card {
  display: grid;
  gap: 14px;
}

.work-current-card h2 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.35rem;
}

.work-address {
  margin: 0;
  color: #3e4741;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.work-navigation,
.work-photo,
.work-status-actions .button {
  min-height: 66px;
  font-size: 1.05rem;
}

.work-status-actions,
.work-step-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.work-done {
  grid-column: 1 / -1;
}

.work-note {
  min-height: 96px !important;
}

.work-photo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-photo-list a {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.work-photo-empty {
  min-height: 46px;
}

.route-toggle {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
  cursor: pointer;
}

.route-toggle input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.route-toggle span {
  display: grid;
  gap: 3px;
}

.route-toggle strong {
  line-height: 1.25;
}

.route-toggle small {
  color: var(--muted);
  line-height: 1.35;
}

.route-message {
  padding: 12px 14px;
  border: 1px solid #bdd9c9;
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  background: #f2faf5;
  color: #24513d;
  font-weight: 800;
  line-height: 1.42;
}

.route-message.warning {
  border-color: #ecd6a8;
  border-left-color: var(--amber);
  background: #fffdf8;
  color: #694716;
}

.route-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.route-section-heading h3 {
  margin: 0;
  font-size: 1rem;
}

.route-list {
  display: grid;
  gap: 12px;
}

.route-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  background: #fff;
}

.route-card.coordinate-missing {
  border-left-color: var(--blue);
}

.route-card.completed {
  border-left-color: #6f7d74;
  background: #f5f7f5;
}

.route-card.completed.in-route {
  opacity: 0.68;
}

.completed-heading {
  margin-top: 18px;
}

.route-card-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.route-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 950;
}

.route-card-title {
  min-width: 0;
  flex: 1 1 auto;
}

.route-card-title h3,
.route-card-title p {
  overflow-wrap: anywhere;
}

.route-card-title h3 {
  margin: 0;
  font-size: 1.02rem;
}

.route-card-title p {
  margin: 4px 0 0;
  color: #424a44;
  line-height: 1.35;
}

.route-distance {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.route-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.route-actions .button {
  width: 100%;
  min-width: 0;
  padding: 0 10px;
  text-align: center;
}

.route-actions .route-primary-action {
  min-height: 58px;
  font-size: 1rem;
}

.route-note {
  min-height: 74px !important;
}

.gps-missing.compact {
  min-height: 48px;
  font-size: 0.88rem;
}

.surface-list {
  display: grid;
  gap: 10px;
}

.surface-card {
  width: 100%;
  padding: 14px;
  text-align: left;
  background: #fff;
  color: var(--ink);
}

.surface-card:hover {
  border-color: rgba(29, 107, 79, 0.55);
}

.surface-card .meta,
.detail-grid .meta,
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  color: var(--muted);
  font-size: 0.87rem;
}

.surface-card .address {
  margin: 7px 0 10px;
  color: #424a44;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 10px;
}

.worker-flow {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.project-buttons {
  display: grid;
  gap: 10px;
}

.project-button {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.project-button.active {
  border-color: var(--green);
  background: #eef7f2;
}

.project-button strong {
  display: block;
  margin-bottom: 3px;
  overflow-wrap: anywhere;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
  align-items: start;
}

.detail-grid {
  display: grid;
  gap: 12px;
}

.data-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
}

.data-row span {
  color: var(--muted);
  font-weight: 800;
}

.data-row strong {
  overflow-wrap: anywhere;
}

.gps-missing {
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 12px;
  border: 1px dashed #c9d2cb;
  border-radius: var(--radius);
  background: #fbfcfa;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.photo-upload {
  position: relative;
  overflow: hidden;
}

.photo-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.photo-card {
  overflow: hidden;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef1ed;
}

.photo-card div {
  display: grid;
  gap: 3px;
  padding: 9px;
}

.photo-card strong {
  overflow-wrap: anywhere;
  font-size: 0.83rem;
}

.photo-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.upload-list,
.warning-list {
  display: grid;
  gap: 12px;
}

.upload-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.upload-preview {
  display: block;
  align-self: start;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eef1ed;
}

.upload-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.upload-details {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.upload-details .address,
.warning-row .address {
  margin: 0;
  color: #424a44;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.upload-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.meta-item {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
}

.meta-item span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.meta-item strong {
  overflow-wrap: anywhere;
  font-size: 0.88rem;
}

.warning-row {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #ecd6a8;
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
  background: #fffdf8;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 50;
  max-width: min(520px, calc(100% - 28px));
  transform: translateX(-50%);
  padding: 13px 16px;
  border-radius: var(--radius);
  background: #1e2722;
  color: #fff;
  box-shadow: 0 12px 32px rgba(22, 28, 24, 0.25);
  font-weight: 800;
}

.hidden {
  display: none !important;
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 210px;
  padding: 26px;
  text-align: center;
  color: var(--muted);
}

.empty-state h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
}

.empty-state p {
  max-width: 520px;
  margin: 0;
  line-height: 1.45;
}

.empty-symbol {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e5f1eb;
  color: var(--green);
  font-size: 2rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  #app-shell {
    padding: 12px;
  }

  .topbar,
  .admin-layout,
  .worker-flow,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
  }

  .view-switch {
    width: 100%;
  }

  .view-tab {
    flex: 1 1 0;
    min-width: 0;
  }

  .grid.two,
  .grid.three,
  .stat-grid,
  .search-row,
  .upload-meta,
  .route-overview {
    grid-template-columns: 1fr;
  }

  .panel-header {
    display: grid;
  }

  .admin-section-bar,
  .upload-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .route-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-table-head {
    display: none;
  }

  .active-projects .project-table-row,
  .archived-projects .project-table-row,
  .assignment-select {
    grid-template-columns: 1fr;
  }

  .project-table-row {
    gap: 8px;
    align-items: stretch;
  }

  .project-table-row:not(.project-table-head) > div::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .project-table-row .button.compact {
    width: 100%;
  }

  .admin-section-tabs,
  .admin-section-button,
  .admin-section-bar .button {
    width: 100%;
  }

  .upload-preview {
    width: min(320px, 100%);
  }

  .data-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .panel-header,
  .panel-body,
  .project-main {
    padding: 14px;
  }

  .actions .button,
  .actions button,
  .route-toolbar .button {
    width: 100%;
  }

  .route-card-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .route-card-header .status-pill {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .route-actions {
    grid-template-columns: 1fr;
  }

  .work-status-actions,
  .work-step-actions {
    grid-template-columns: 1fr;
  }

  .work-done {
    grid-column: auto;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }
}
