/* ==========================================================================
   LLL-E-Book — "reading room" theme
   Warm paper tones, quiet literary character. Serif for titles & the reading
   pane, sans-serif for UI. One muted terracotta accent used sparingly.
   ========================================================================== */

:root {
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --font-serif: "Lora", Georgia, "Times New Roman", serif;
  --font-hand: "Caveat", "Segoe Script", cursive;

  /* paper palette */
  --bg: #f3ecdf;        /* page cream */
  --bg-2: #ece2d0;      /* slightly deeper cream */
  --surface: #fbf6ec;   /* card / paper */
  --surface-2: #f4ede0; /* inset panels */

  --text: #2c2620;      /* warm near-black */
  --muted: #8b7d6c;     /* warm gray */
  --line: #e3d7c3;      /* soft divider */
  --line-soft: #ecdfcc;

  /* terracotta accent */
  --accent: #b85f3e;
  --accent-strong: #9c4c30;
  --accent-soft: rgba(184, 95, 62, 0.12);
  --tape: rgba(213, 158, 116, 0.5);
  --ink: #3a322a;
  --ink-soft: rgba(58, 50, 42, 0.1);

  --reader-font-size: 18px;
  --header-h: 64px;

  --shadow-soft: 0 1px 2px rgba(90, 60, 20, 0.06), 0 10px 26px rgba(90, 60, 20, 0.07);
  --shadow-lift: 0 2px 5px rgba(90, 60, 20, 0.09), 0 16px 38px rgba(90, 60, 20, 0.12);
}

[data-theme="dark"] {
  --bg: #1f1a13;
  --bg-2: #292218;
  --surface: #2c251b;
  --surface-2: #352d22;

  --text: #e9e0d2;
  --muted: #a99a85;
  --line: #4a4033;
  --line-soft: #3a3126;

  --accent: #d18a68;
  --accent-strong: #c27956;
  --accent-soft: rgba(209, 138, 104, 0.15);
  --tape: rgba(213, 158, 116, 0.42);
  --ink: #e6dccc;
  --ink-soft: rgba(230, 220, 204, 0.1);

  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.3), 0 10px 26px rgba(0, 0, 0, 0.3);
  --shadow-lift: 0 2px 5px rgba(0, 0, 0, 0.35), 0 16px 38px rgba(0, 0, 0, 0.35);
}

/* Book-cover tone blocks (cycled by JS to give the library visual variety) */
.cover-terra  { --cover-a: #c17950; --cover-b: #a85c3b; --cover-t: #fdf5e8; }
.cover-forest { --cover-a: #5e7c5c; --cover-b: #48624a; --cover-t: #f0ecda; }
.cover-plum   { --cover-a: #7c5f77; --cover-b: #644a60; --cover-t: #f4eae6; }
.cover-ochre  { --cover-a: #bd9a5b; --cover-b: #a2813f; --cover-t: #fbf5e6; }
.cover-slate  { --cover-a: #6e6f78; --cover-b: #565760; --cover-t: #eef0ee; }

/* ---------- Base / reset ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  transition: background 0.25s ease, color 0.25s ease;
}

.hidden {
  display: none !important;
}

button {
  font-family: inherit;
  cursor: pointer;
}

code {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 0.9em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 14px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease,
    transform 0.12s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: var(--accent);
  color: #fdf5e8;
  border-color: var(--accent);
  box-shadow: 0 1px 2px rgba(120, 60, 20, 0.22);
}

.btn.primary:hover {
  background: var(--accent-strong);
  color: #fff;
  border-color: var(--accent-strong);
}

/* icon-only buttons in the reader toolbar */
.btn-icon {
  padding: 9px;
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.btn-icon:hover {
  background: var(--ink-soft);
  border-color: transparent;
  color: var(--ink);
}

.btn-text {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
}

/* distinct "back to homepage/library" button (vs. in-book page-turn) */
.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px 8px 9px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-home:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.btn-label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.toolbar-sep {
  width: 1px;
  height: 22px;
  margin: 0 6px;
  background: var(--line-soft);
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

/* ---------- Header ---------- */
.app-header {
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-left {
  justify-self: start;
  display: flex;
  align-items: center;
  position: relative;
}

.logo {
  height: 52px;
  width: auto;
  display: block;
  padding: 5px;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 2px 6px rgba(80, 55, 25, 0.2);
  transform: rotate(-6deg);
  transition: transform 0.2s ease;
}

.header-left:hover .logo {
  transform: rotate(-3deg) scale(1.05);
}

/* washi tape holding the diary sticker */
.header-left::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 16px;
  width: 48px;
  height: 18px;
  background: var(--tape);
  transform: rotate(-7deg);
  box-shadow: 0 1px 2px rgba(80, 55, 25, 0.12);
}

.app-title {
  position: relative;
  isolation: isolate;
  justify-self: center;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--text);
  padding: 0 18px;
}

/* highlighter swipe behind the handwritten diary title */
.app-title::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 55%;
  height: 34%;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-soft) 16%,
    var(--accent-soft) 84%,
    transparent
  );
  transform: rotate(-1.2deg);
  z-index: -1;
  border-radius: 3px;
}

.header-actions {
  justify-self: end;
  display: flex;
  gap: 8px;
}

.lang-wrap {
  display: inline-flex;
  align-items: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: var(--font-hand);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 14px 9px 12px 8px; /* hand-drawn, uneven corners */
  padding: 9px 32px 9px 14px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%238b7d6c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.lang-select:hover {
  border-color: var(--ink);
}

.lang-select:focus {
  outline: none;
  border-color: var(--ink);
}

.lang-select option {
  background: var(--surface);
  color: var(--text);
}

/* ---------- Layout / library ---------- */
main {
  padding: 30px 26px 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  position: relative;
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 6px;
  color: var(--text);
}

/* hand-drawn underline */
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--ink);
  transform: rotate(-0.6deg);
  border-radius: 2px;
}

.section-subtitle {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.library-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 26px 22px;
}

/* Book card: rounded "spine" edge on the left, soft shelf-line beneath */
.book-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: 10px 12px 12px 10px; /* rounded spine on the left */
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.book-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-left-color: var(--ink);
}

/* faint shelf-line resting under the card */
.book-card::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -7px;
  height: 1px;
  background: var(--line);
  opacity: 0.55;
}

.book-cover {
  position: relative;
  height: 200px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, var(--cover-a) 0%, var(--cover-b) 100%);
  color: var(--cover-t);
  border-radius: 6px 12px 0 0;
}

.book-cover-title {
  font-family: var(--font-hand);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.book-cover-rule {
  margin-top: 9px;
  height: 1px;
  width: 36px;
  background: currentColor;
  opacity: 0.5;
}

.book-body {
  padding: 14px 16px 18px;
}

.book-title {
  font-family: var(--font-serif);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.book-meta {
  font-family: var(--font-ui);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.book-progress {
  margin-top: 13px;
  height: 3px;
  border-radius: 99px;
  background: var(--line-soft);
  overflow: hidden;
}

.book-progress-fill {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
}

.empty {
  color: var(--muted);
  font-family: var(--font-ui);
}

/* ---------- Reader ---------- */
#reader-view {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--header-h) - 20px);
}

/* page-based formats: constrain reader to viewport so content fits without scrolling */
#reader-view.reader-paged {
  height: calc(100vh - var(--header-h) - 20px);
  overflow: hidden;
}

#reader-view.reader-paged .reader-content {
  padding: 8px;
  min-height: 0;
  overflow: auto;
}

/* gentle fade when a book opens */
.reader-entered {
  animation: reader-fade 0.45s ease;
}

@keyframes reader-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* soft page-turn motion on next / prev */
.page-turn {
  animation: page-turn 0.5s ease;
}

@keyframes page-turn {
  from { opacity: 0; transform: translateX(9px); }
  to   { opacity: 1; transform: none; }
}

.reader-header {
  margin-bottom: 18px;
  position: sticky;
  top: var(--header-h);
  z-index: 5;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.reader-title-row {
  margin-bottom: 12px;
  padding: 0 4px;
}

.reader-title-row .book-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
}

.reader-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
}

.toolbar-group {
  display: flex;
  gap: 4px;
}

.progress-label {
  font-family: var(--font-ui);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  min-width: 78px;
  text-align: right;
  margin-left: auto;
}

.reader-body {
  display: flex;
  gap: 18px;
  flex: 1;
  min-height: 0;
}

.toc-panel {
  width: 264px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  overflow: auto;
  flex-shrink: 0;
  display: none;
  box-shadow: var(--shadow-soft);
}

.toc-panel.open {
  display: block;
}

.toc-panel h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--text);
}

.toc-panel a {
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 7px 9px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.toc-panel a:hover {
  background: var(--ink-soft);
  color: var(--ink);
}

.panel-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.bookmark-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 4px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: background 0.15s ease;
}

.bookmark-item:hover {
  background: var(--accent-soft);
}

.bookmark-label {
  flex: 1;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--text);
  padding: 5px 0;
  cursor: pointer;
  border-radius: 6px;
}

.bookmark-label:hover {
  color: var(--accent-strong);
}

.bookmark-remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 7px;
  border-radius: 6px;
}

.bookmark-remove:hover {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.book-stored {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--line-soft);
  font-size: 11px;
}

.book-stored-label {
  color: var(--muted);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.book-remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  padding: 5px 7px;
  border-radius: 6px;
}

.book-remove:hover {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.book-footer {
  margin-top: 10px;
}

.book-delete {
  width: 100%;
  background: none;
  border: 1px dashed var(--line);
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.02em;
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.book-delete:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.book-note {
  margin-top: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--accent-strong);
}

.reader-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 16px);
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-lift);
  border-radius: 12px;
  padding: 12px 16px;
  max-width: min(90vw, 480px);
  font-family: var(--font-ui);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}

.reader-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.flash {
  animation: flash 0.35s ease;
}

@keyframes flash {
  0% { background: var(--accent-soft); }
  100% { background: transparent; }
}

#bookmark-btn.is-bookmarked {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.bump {
  animation: bump 0.3s ease;
}

@keyframes bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.reader-content {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: auto;
  padding: 42px 56px;
  font-family: var(--font-serif);
  font-size: var(--reader-font-size);
  color: var(--text);
  line-height: 1.8;
  min-height: 520px;
}

.reader-content pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: inherit;
  font-size: inherit;
}

.reader-content .notice,
.notice {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 15px;
}

.reader-content .notice p { margin-bottom: 10px; }
.reader-content .notice li { margin: 4px 0 4px 20px; }

.reader-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.reader-content canvas {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* Comic: full-page image centred in viewport */
.comic-page {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: auto;
}
.comic-page img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: auto;
}

/* PDF: page canvas centred; wrapper scrolls when zoomed in */
.pdf-page {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: auto;
}
.pdf-page canvas {
  display: block;
  max-width: none;
  max-height: none;
  margin: auto;
}

.reader-content .loading,
.loading {
  color: var(--muted);
  font-family: var(--font-ui);
}

/* warm, quiet scrollbar for the reading pane */
.reader-content::-webkit-scrollbar { width: 12px; }
.reader-content::-webkit-scrollbar-track { background: transparent; }
.reader-content::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--line), var(--accent-soft));
  border-radius: 20px;
  border: 3px solid var(--surface);
}

/* PDF zoom toolbar buttons */
#pdf-zoom-group { gap: 2px; }
#pdf-zoom-group .btn { font-size: 12px; padding: 4px 8px; }
#pdf-zoom-group .btn.is-active { color: var(--accent-strong); font-weight: 600; }

/* Zoom slider for continuous zoom control */
.zoom-slider {
  width: 100px;
  height: 4px;
  appearance: none;
  background: var(--accent-soft);
  border-radius: 2px;
  cursor: pointer;
  vertical-align: middle;
  margin-top: 7px;
}

.zoom-slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--surface);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.zoom-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--surface);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.zoom-percentage {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--muted);
  min-width: 35px;
  display: inline-block;
  margin-left: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  main { padding: 18px 14px 40px; }

  .app-header { padding: 0 14px; }
  .logo { height: 40px; }
  .app-title { font-size: 28px; }
  .section-title { font-size: 26px; }
  .lang-select { padding: 8px 30px 8px 12px; font-size: 17px; }
  .reader-header { padding-left: 4px; padding-right: 4px; }
  .library-list { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 20px 14px; }
  .book-cover { height: 200px; padding: 14px; }
  .book-cover-title { font-size: 14px; }

  .reader-content { padding: 22px 20px; }
  .reader-content .page { padding: 20px 16px; }
  .toc-panel { width: 100%; }
  .page-turn { animation: none; }
  .reader-entered { animation: none; }

  #reader-view.reader-paged .reader-content { padding: 4px; }

  /* ---------- Page Jump Controls ---------- */
  .page-slider { display: none; }
  .page-input { width: 64px; }
}

/* ---------- Page Jump Controls ---------- */
.page-jump {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.page-input {
  width: 52px;
  padding: 4px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  outline: none;
  transition: border-color 0.15s ease;
}

.page-input:focus {
  border-color: var(--accent);
}

.page-total {
  font-family: var(--font-ui);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.page-slider {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--line);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.page-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--surface);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  cursor: pointer;
}

.page-slider::-moz-range-thumb {
  width: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--surface);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  cursor: pointer;
}
