:root {
  --bg: #f4f6f8;
  --card: #ffffff;
  --ink: #1f2933;
  --sub: #6b7684;
  --line: #e3e8ee;
  --accent: #d94b3b;      /* 郵便=赤のイメージ */
  --accent-ink: #b23a2c;
  --accent-soft: #fdecea;
  --ok: #2f855a;
  --shadow: 0 1px 3px rgba(31,41,51,.08), 0 6px 20px rgba(31,41,51,.06);
  --radius: 14px;
  --field: #ffffff;   /* 入力欄・ボタンなどの面 */
  --panel: #fbfcfd;   /* 補助パネルの面 */
}

/* ダークモード */
[data-theme="dark"] {
  --bg: #12151a;
  --card: #1b2129;
  --ink: #e6e9ee;
  --sub: #9aa4b2;
  --line: #2b323d;
  --accent: #e5675a;
  --accent-ink: #f0897d;
  --accent-soft: #3a231f;
  --ok: #48bb78;
  --shadow: 0 1px 3px rgba(0,0,0,.45), 0 6px 20px rgba(0,0,0,.35);
  --field: #232a33;
  --panel: #222933;
}
[data-theme="dark"] .site-header { background: linear-gradient(180deg, #1b2129, #161a20); }
[data-theme="dark"] .btn,
[data-theme="dark"] .chip,
[data-theme="dark"] .toolbar select,
[data-theme="dark"] .toolbar input,
[data-theme="dark"] .fav-sort select,
[data-theme="dark"] .searchbar input,
[data-theme="dark"] .io textarea,
[data-theme="dark"] .theme-toggle { background: var(--field); color: var(--ink); }
[data-theme="dark"] .io-box,
[data-theme="dark"] .io-cases li,
[data-theme="dark"] #expCodeBox { background: var(--panel); }
[data-theme="dark"] .ad-slot.ad-ph { background: #1b2129; color: #5b6672; border-color: #2b323d; }
[data-theme="dark"] .type-office { background: #22344a; color: #9cc4ee; }
[data-theme="dark"] .card--office { background: #1a2430; border-color: #2c3f52; }
[data-theme="dark"] .card--address { background: #2a2020; border-color: #4a2f2b; }
[data-theme="dark"] .io-cta { border-color: #4a2f2b; }
[data-theme="dark"] mark { background: #5a4a12; color: #ffe9a8; }
[data-theme="dark"] .star { color: #4a5563; }

/* 配色切り替え（iOS風スライドスイッチ） */
.theme-switch {
  position: relative;
  width: 56px; height: 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--field);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  align-self: center;
}
.theme-switch .ts-ico {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 12px; line-height: 1; opacity: .7;
}
.theme-switch .ts-sun { left: 7px; }
.theme-switch .ts-moon { right: 7px; }
.theme-switch .ts-knob {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.3);
  transition: transform .2s ease;
}
[data-theme="dark"] .theme-switch { background: #2b3a4d; border-color: #3a4a5d; }
[data-theme="dark"] .theme-switch .ts-knob { transform: translateX(26px); background: #e6e9ee; }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: var(--accent-ink); }

.wrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px 80px;
}
.wrap.wide { max-width: 1440px; }
.site-header .wrap { padding-top: 14px; padding-bottom: 14px; }

/* ヘッダー */
.site-header {
  background: linear-gradient(180deg, #fff, #fdfdfe);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(1.2) blur(6px);
  transition: transform .25s ease;
}
.site-header.hide { transform: translateY(-100%); }
.site-header .wrap { position: relative; }
.site-header .wrap {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: .02em;
}
.brand .mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 18px;
  box-shadow: var(--shadow);
}
.nav { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.nav a {
  text-decoration: none;
  color: var(--sub);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
}
.nav a.active { color: var(--accent-ink); background: var(--accent-soft); }
.nav a .badge {
  display: none;
  margin-left: 5px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  line-height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  text-align: center;
  vertical-align: 1px;
}

.empty {
  text-align: center;
  color: var(--sub);
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px 20px;
  margin-top: 12px;
}
.empty p { margin: 4px 0; }

/* 見出し */
.hero { padding: 30px 0 8px; }
.hero h1 { font-size: 24px; margin: 0 0 6px; letter-spacing: .01em; }
.hero p { margin: 0; color: var(--sub); font-size: 14px; }

/* 検索ボックス */
.searchbar { margin: 18px 0 8px; position: relative; }
.searchbar input {
  width: 100%;
  font-size: 18px;
  padding: 16px 46px 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  outline: none;
  transition: border-color .15s;
}
.searchbar input:focus { border-color: var(--accent); }
.searchbar .clear {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  border: none; background: #eceff3; color: var(--sub);
  width: 26px; height: 26px; border-radius: 50%; cursor: pointer;
  font-size: 15px; line-height: 1; display: none;
}
.searchbar .clear.show { display: block; }

.hint { color: var(--sub); font-size: 12.5px; margin: 6px 2px 0; }

.status { color: var(--sub); font-size: 13px; padding: 12px 2px; }

/* 結果カード */
.results { margin-top: 12px; display: grid; gap: 10px; }

/* 横並び（グリッド）表示：一度にたくさん・全カード同じ大きさ */
.results--grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); align-items: stretch; }
.results--grid .status { grid-column: 1 / -1; }
.results--grid .card { flex-direction: column; align-items: stretch; gap: 8px; min-height: 160px; height: 100%; }
.results--grid .card .addr { flex: 1 0 auto; padding-right: 0; }
.results--grid .card .zip { font-size: 18px; }
/* 長い住所は行数を制限して高さを揃える */
.results--grid .card .addr .main,
.results--grid .card .addr .sub {
  display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden;
}
.results--grid .card .addr .main { -webkit-line-clamp: 2; }
.results--grid .card .addr .sub { -webkit-line-clamp: 2; }
.results--grid .card .actions { width: 100%; justify-content: space-between; margin-top: 2px; }
.results--grid .card .copyrow { flex: 1; }
.results--grid .card .copyrow .mini { flex: 1; min-width: 0; padding: 11px 4px; font-size: 13px; }
.results--grid .card .star { width: 40px; height: 40px; font-size: 26px; }

/* 1列（リスト）表示：横幅を広く使い、1行に収める */
.results:not(.results--grid) .card { flex-wrap: nowrap; }
.results:not(.results--grid) .card.card--fav { flex-wrap: wrap; } /* 編集フォームだけは下に折り返す */
.results:not(.results--grid) .card .addr .main,
.results:not(.results--grid) .card .addr .sub {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.zip {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent-ink);
  letter-spacing: .02em;
  white-space: nowrap;
}
.zip .mark { color: var(--accent); font-weight: 700; margin-right: 2px; }
.addr { flex: 1 1 auto; min-width: 0; padding-right: 8px; }
.addr .main { font-weight: 600; font-size: 16px; }
.addr .sub { color: var(--sub); font-size: 12.5px; }

/* 操作エリア（お気に入り＋コピー3種） */
.actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.star {
  border: none; background: none; cursor: pointer;
  font-size: 30px; line-height: 1; color: #cbd2da;
  width: 46px; height: 46px; border-radius: 12px;
  display: inline-grid; place-items: center;
  transition: transform .12s, background .12s;
}
.star:hover { transform: scale(1.1); background: rgba(245,179,1,.12); }
.star.on { color: #f5b301; }
.copyrow {
  display: inline-flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(31,41,51,.18);
}
.copyrow .mini {
  border: none;
  border-left: 1px solid rgba(255,255,255,.35);
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 18px;
  min-width: 62px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .12s, transform .08s;
}
.copyrow .mini:first-child { border-left: none; }
.copyrow .mini:hover { background: var(--accent-ink); }
.copyrow .mini:active { transform: scale(.96); }
.copyrow .mini.done { background: var(--ok); }

/* お気に入りセクション */
.favs { margin: 16px 0 4px; }
.favs h2 { font-size: 14px; color: var(--accent-ink); margin: 0 0 8px; }
.favs .results { gap: 8px; }

/* タイプ絞り込みチップ */
.typechips { margin: 0; }

/* 絞り込みブロック（種類・都道府県） */
.filter-block { display: flex; gap: 10px; align-items: flex-start; margin: 12px 0; }
.filter-label {
  flex-shrink: 0; font-size: 12px; font-weight: 700; color: var(--sub);
  background: var(--panel); border: 1px solid var(--line);
  padding: 6px 10px; border-radius: 8px; margin-top: 1px;
}
.prefchips { gap: 6px; }
.prefchips .chip { font-size: 12.5px; padding: 6px 10px; }

mark { background: #fff2b0; color: inherit; border-radius: 3px; padding: 0 1px; }

/* 種別ラベル・色分け（お気に入り一覧で使用） */
.type-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 3px 7px;
  border-radius: 999px;
  margin-right: 7px;
  vertical-align: 1px;
}
.type-address { background: var(--accent-soft); color: var(--accent-ink); }
.type-office { background: #e5effb; color: #1f5fa8; }
/* 住所=うっすら赤 / 役所=うっすら青（全ページ共通・左ラインなし） */
.card--office { background: #eff5fc; border-color: #d3e3f5; }
.card--address { background: #fdf3f1; border-color: #f4d9d4; }

.edited-badge {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  background: #fff4d6; color: #8a6d1a;
  padding: 2px 7px; border-radius: 999px; margin-right: 7px;
}
[data-theme="dark"] .edited-badge { background: #4a3d16; color: #f0d98a; }

/* 編集済みカードは全体を黄色く */
.card.card--edited { background: #fff8e0; border-color: #f0d98a; }
[data-theme="dark"] .card.card--edited { background: #3a3316; border-color: #5a4d1e; }

/* 編集ボタン */
.edit-btn {
  border: 1px solid var(--line);
  background: var(--field);
  cursor: pointer;
  font-size: 16px; line-height: 1;
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-grid; place-items: center;
  flex-shrink: 0;
}
.edit-btn:hover { border-color: var(--accent); }
[data-theme="dark"] .edit-btn { background: var(--field); }

/* 編集フォーム（カード内で開く） */
.fav-edit {
  order: 9;
  width: 100%;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
/* 1列（リスト）表示のときだけ横並びを折り返して、フォームを下段へ */
.results:not(.results--grid) .card--fav { flex-wrap: wrap; }
.results:not(.results--grid) .fav-edit { flex-basis: 100%; }
.fav-edit-fields { display: flex; flex-direction: column; gap: 10px; }
.fav-edit label { font-size: 12px; color: var(--sub); display: flex; flex-direction: column; gap: 4px; }
.fav-edit .ed-zip { max-width: 220px; }
.fav-edit input, .fav-edit textarea {
  border: 1.5px solid var(--line); border-radius: 8px; padding: 9px 10px;
  font-size: 14px; background: var(--field); color: var(--ink); outline: none;
  font-family: inherit; width: 100%;
}
.fav-edit textarea { resize: vertical; min-height: 64px; line-height: 1.5; }
.fav-edit input:focus, .fav-edit textarea:focus { border-color: var(--accent); }
.ed-msg { color: var(--accent-ink); font-size: 12.5px; margin: 8px 0 0; }
.fav-edit-row { display: flex; gap: 8px; margin-top: 10px; }

/* お気に入りの絞り込み・並び替え */
.fav-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 6px;
}
.fav-sort { font-size: 13px; color: var(--sub); display: inline-flex; align-items: center; gap: 6px; }
.fav-sort select {
  padding: 8px 10px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; font-size: 13.5px; outline: none;
}
.fav-sort select:focus { border-color: var(--accent); }

/* 絞り込みブラウズ */
.browse { margin-top: 26px; }
.browse h2 { font-size: 15px; margin: 0 0 10px; color: var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13.5px;
  cursor: pointer;
}
.chip:hover { border-color: var(--accent); }
.chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.crumbs { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; font-size: 13px; color: var(--sub); }
.crumbs button { border: none; background: none; color: var(--accent-ink); cursor: pointer; font-size: 13px; font-weight: 600; padding: 0; }

/* 一覧テーブル（役所ページ） */
.toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: 16px 0 4px; }
.toolbar select, .toolbar input {
  padding: 10px 12px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; font-size: 14px; outline: none;
}
.toolbar input { flex: 1; min-width: 160px; }
.toolbar select:focus, .toolbar input:focus { border-color: var(--accent); }
.count { color: var(--sub); font-size: 13px; margin: 10px 2px; }

/* お気に入りの引き継ぎ */
.io {
  margin-top: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}
.io h2 { font-size: 16px; margin: 0 0 6px; }
.io-lead { color: var(--sub); font-size: 13.5px; margin: 0 0 14px; }
.io-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.io-box { border: 1px solid var(--line); border-radius: 12px; padding: 14px; background: #fbfcfd; }
.io-box h3 { font-size: 14px; margin: 0 0 8px; }
.io-note { color: var(--sub); font-size: 12px; margin: 8px 0 0; line-height: 1.55; }
.io-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.io textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  font-size: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  resize: vertical;
  outline: none;
}
.io textarea:focus { border-color: var(--accent); }
.btn {
  display: inline-block;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
}
.btn:hover { border-color: var(--accent); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-ink); }
.io-status { font-size: 13px; margin: 12px 2px 0; min-height: 18px; }
.io-status.ok { color: var(--ok); }
.io-status.err { color: var(--accent-ink); }
.io-help { margin-top: 12px; font-size: 13px; }
.io-help summary { cursor: pointer; color: var(--accent-ink); font-weight: 600; }
.io-help ol { margin: 10px 0 0; padding-left: 20px; line-height: 1.7; }
.io-help li { margin: 2px 0; }

/* バックアップ専用ページ */
.io-intro {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  margin-top: 16px;
}
.io-intro h2 { font-size: 16px; margin: 0 0 8px; }
.io-intro p { font-size: 14px; margin: 8px 0; }
.io-cases { list-style: none; padding: 0; margin: 12px 0; display: grid; gap: 8px; }
.io-cases li {
  background: #fbfcfd; border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 12px; font-size: 13.5px;
}
.io { position: relative; }
.io-step {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  padding: 3px 10px; border-radius: 999px; margin-bottom: 6px;
}
.io-steps { margin: 8px 0 12px; padding-left: 20px; line-height: 1.7; font-size: 13.5px; }
.io-steps li { margin: 4px 0; }
#expCodeBox { margin-top: 10px; background: #f7f9fb; color: var(--sub); }
.io-box .btn { margin-top: 4px; }
.io-faq { margin: 8px 0 0; }
.io-faq dt { font-weight: 700; font-size: 14px; margin-top: 12px; }
.io-faq dd { margin: 4px 0 0; color: var(--sub); font-size: 13.5px; line-height: 1.6; }

/* お気に入りページ → バックアップへの誘導 */
.io-cta {
  display: flex; align-items: center; gap: 12px;
  margin: 14px 0 4px;
  padding: 14px 16px;
  background: var(--accent-soft);
  border: 1px solid #f6d4cf;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.5;
}
.io-cta:hover { border-color: var(--accent); }
.io-cta-ico { font-size: 24px; }
.io-cta strong { color: var(--accent-ink); }

@media (max-width: 560px) {
  .io-grid { grid-template-columns: 1fr; }
}

/* 表示切替（グリッド / 1列） */
.view-switch { display: flex; justify-content: flex-end; margin: 4px 0 10px; }
.view-switch button {
  border: 1px solid var(--line);
  background: var(--field);
  color: var(--sub);
  font-size: 13px; font-weight: 700;
  padding: 8px 14px;
  cursor: pointer;
}
.view-switch button:first-child { border-radius: 10px 0 0 10px; }
.view-switch button:last-child { border-radius: 0 10px 10px 0; border-left: none; }
.view-switch button.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* 広告枠 */
.ad-slot { margin: 18px 0; min-height: 0; }
.ad-slot.ad-ph {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #fafbfc, #fafbfc 10px, #f4f6f8 10px, #f4f6f8 20px);
  color: #aab2bd;
  font-size: 12px;
  letter-spacing: .05em;
}
.ad-slot .adsbygoogle { display: block; }

/* 左右サイドレール広告（ワイド画面のみ） */
.ad-rail { position: fixed; top: 50%; transform: translateY(-50%); z-index: 5; }
.ad-rail-left { left: 16px; }
.ad-rail-right { right: 16px; }
.ad-rail .ad-slot { width: 160px; margin: 0; }
.ad-rail .ad-ph { writing-mode: vertical-rl; }
@media (max-width: 1599px) {
  .ad-rail { display: none; }
}

.footer { text-align: center; color: var(--sub); font-size: 12px; padding: 30px 0 0; }
.footer a { color: var(--sub); }

@media (max-width: 560px) {
  .site-header .wrap { flex-wrap: wrap; gap: 8px; padding-right: 62px; }
  .brand { font-size: 16px; }
  .nav { gap: 5px; }
  .nav a { padding: 8px 10px; font-size: 13px; }
  /* テーマ切替は右上に固定して余白を取らない */
  .theme-switch { position: absolute; top: 12px; right: 14px; margin: 0; }

  .wrap { padding-left: 12px; padding-right: 12px; }
  .hero { padding: 22px 0 6px; }
  .hero h1 { font-size: 20px; }

  /* 入力まわりは指で押しやすく（16px＝iOSズーム防止） */
  .searchbar input { font-size: 16px; padding: 15px 44px 15px 16px; }
  .toolbar input, .fav-sort select, .fav-edit input, .fav-edit textarea { font-size: 16px; padding: 12px; }

  /* チップは大きめのタップ領域に */
  .chip { padding: 9px 13px; font-size: 13.5px; }
  .view-switch button { padding: 10px 16px; font-size: 13.5px; }

  /* 絞り込みツールバーは縦積み */
  .fav-toolbar { flex-direction: column; align-items: stretch; gap: 8px; }
  .fav-sort { justify-content: space-between; }
  .fav-sort select { flex: 1; margin-left: 8px; }

  /* 一覧はスマホでは常に1列（大きく操作しやすい） */
  .results--grid { grid-template-columns: 1fr; }
  .results--grid .card { min-height: 0; }

  /* 共通：余白と、長い文字を必ず折り返して枠外へ出さない */
  .card { gap: 8px 10px; padding: 14px; }
  .zip { font-size: 19px; }
  .addr { min-width: 0; }
  .addr, .addr .main, .addr .sub { overflow-wrap: anywhere; word-break: break-word; }

  /* 1列（リスト）表示：縦積みにして横はみ出しを防ぐ */
  .results:not(.results--grid) .card { flex-wrap: wrap; }
  .results:not(.results--grid) .card .addr { flex-basis: 100%; padding-right: 0; }
  .results:not(.results--grid) .card .addr .main,
  .results:not(.results--grid) .card .addr .sub { white-space: normal; }

  /* 操作ボタンは大きく・横いっぱいに均等（グリッドでも同じ大きさ） */
  .actions { width: 100%; justify-content: space-between; margin-top: 6px; gap: 8px; }
  .copyrow { flex: 1; min-width: 0; }
  .copyrow .mini,
  .results--grid .card .copyrow .mini { flex: 1; padding: 14px 4px; min-width: 0; font-size: 14px; }
  .star,
  .results--grid .card .star { width: 50px; height: 50px; font-size: 30px; }
  .edit-btn { width: 46px; height: 46px; font-size: 18px; }
}
