/* styles.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-base: #fafaf8;
  --bg-surface: #fff;
  --bg-tertiary: #f0f0ed;
  --text-primary: #1a1a1a;
  --text-secondary: #333;
  --text-muted: #999;
  --border-color: #e5e5e5;
  --border-light: #ddd;
  --code-bg: #1a1a1a;
  --code-text: #f0f0ed;
  --accent: #ff6b35;
}

body.dark {
  --bg-base: #1a1a1a;
  --bg-surface: #252525;
  --bg-tertiary: #2a2a2a;
  --text-primary: #f0f0ed;
  --text-secondary: #ccc;
  --text-muted: #888;
  --border-color: #333;
  --border-light: #444;
  --code-bg: #0d0d0d;
  --code-text: #f0f0ed;
}

html, body, #root {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  transition: background-color .2s, color .2s;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

.page {
  position: fixed;
  background: var(--bg-base);
  inset: 0;
}

.scroll-area {
  position: absolute;
  overflow-y: auto;
  z-index: 0;
  inset: 0;
}

.content {
  max-width: 750px;
  margin-left: calc(50% - 500px);
  margin-right: auto;
  padding: 64px 24px 200px;
}

@media (width <= 1100px) {
  .content {
    margin-left: calc(50% - 420px);
  }
}

@media (width <= 900px) {
  .content {
    margin-left: auto;
    margin-right: auto;
  }
}

.bar-toggle {
  position: fixed;
  z-index: 101;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  opacity: .4;
  background: none;
  border: none;
  border-radius: 4px;
  justify-content: center;
  align-items:  center;
  width: 28px;
  height: 28px;
  transition: opacity .15s;
  top: 10px;
  left: 10px;
}

.bar-toggle:hover {
  opacity: 1;
}

.bar-toggle-hidden {
  opacity: .25;
}

.bar-toggle-hidden:hover {
  opacity: .6;
}

.settings-bar {
  position: fixed;
  z-index: 500;
  display: flex;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  background: #fafaf8f2;
  justify-content: space-between;
  align-items:  center;
  padding: 10px 20px 10px 42px;
  transition: opacity .2s, transform .2s;
  top: 0;
  left: 0;
  right: 0;
}

.settings-bar-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
}

body.dark .settings-bar {
  border-bottom-color: var(--border-color);
  background: #1a1a1af2;
}

.brand-label {
  letter-spacing: 3px;
  color: var(--text-muted);
  font-family: Unica One, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.settings-right {
  display: flex;
  align-items:  center;
  gap: 8px;
}

.word-count {
  color: #bbb;
  margin-right: 4px;
  font-size: 13px;
}

body.dark .word-count {
  color: #666;
}

.settings-btn {
  display: flex;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border-radius: 4px;
  justify-content: center;
  align-items:  center;
  width: 32px;
  height: 32px;
  transition: color .15s, border-color .15s;
}

.settings-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-light);
}

.settings-btn.save-success {
  color: #22c55e;
}

.settings-btn.save-error {
  color: #ef4444;
}

.settings-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.settings-btn.clear-chat-btn {
  opacity: .5;
}

.settings-btn.clear-chat-btn:hover {
  opacity: 1;
  color: #ef4444;
  border-color: #ef4444;
}

.shortcuts-wrap {
  position: relative;
}

.shortcuts-popover {
  position: absolute;
  border: 1px solid var(--border-color);
  z-index: 500;
  background: #fafaf8;
  border-radius: 6px;
  width: 240px;
  padding: 12px;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 8px 24px #0000001f;
}

body.dark .shortcuts-popover {
  background: #252525;
  box-shadow: 0 8px 24px #0006;
}

.shortcuts-section {
  margin-bottom: 10px;
}

.shortcuts-section:last-child {
  margin-bottom: 0;
}

.shortcuts-section-title {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
}

.shortcut-row {
  display: flex;
  color: #666;
  justify-content: space-between;
  align-items:  center;
  padding: 2px 0;
  font-size: 12px;
}

body.dark .shortcut-row {
  color: #999;
}

.shortcut-row kbd, .shortcut-row code {
  color: #555;
  background: #0000000d;
  border-radius: 3px;
  padding: 1px 5px;
  font-family: SF Mono, Menlo, monospace;
  font-size: 11px;
}

body.dark .shortcut-row kbd, body.dark .shortcut-row code {
  color: #aaa;
  background: #ffffff14;
}

.login-page {
  display: flex;
  background: var(--bg-base);
  justify-content: center;
  align-items:  center;
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}

.login-card {
  text-align: center;
  padding: 48px 40px;
}

.login-title {
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: Unica One, -apple-system, sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.login-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 14px;
}

.login-google-btn {
  display: inline-flex;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 6px;
  align-items:  center;
  gap: 10px;
  padding: 10px 24px;
  transition: background .15s, box-shadow .15s;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
}

.login-google-btn:hover {
  background: var(--bg-hover);
  box-shadow: 0 1px 3px #00000014;
}

.login-google-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.login-error {
  color: var(--error);
  margin-top: 16px;
  font-size: 13px;
}

.page-tabs {
  display: flex;
  gap: 6px;
  max-width: 750px;
  margin-left: calc(50% - 500px);
  margin-right: auto;
  padding: 56px 24px 8px;
}

@media (width <= 1100px) {
  .page-tabs {
    margin-left: calc(50% - 420px);
  }
}

@media (width <= 900px) {
  .page-tabs {
    margin-left: auto;
    margin-right: auto;
  }
}

.page-tab {
  box-sizing: content-box;
  cursor: pointer;
  background-clip: content-box;
  border: none;
  border-radius: 2px;
  flex: 1;
  height: 3px;
  padding: 8px 0;
  transition: opacity .15s, height .15s, padding-bottom .15s;
}

.page-tab:hover {
  height: 6px;
  padding-bottom: 4px;
}

.page-tab-empty {
  opacity: .3;
}

.page-tab-active {
  height: 6px;
  padding-bottom: 4px;
}

.editor-wrap .tiptap {
  outline: none;
  caret-color: var(--text-primary);
  color: var(--text-secondary);
  min-height: 60vh;
  font-family: "Source Serif 4", Apple Garamond, Baskerville, Libre Baskerville, Droid Serif, Times New Roman, Times, serif;
  font-size: 22px;
  line-height: 1.6;
}

.editor-wrap .tiptap .is-editor-empty:first-child:before {
  content: attr(data-placeholder);
  color: #c0bdb5;
  float: left;
  pointer-events: none;
  height: 0;
}

body.dark .editor-wrap .tiptap .is-editor-empty:first-child:before {
  color: #555;
}

.editor-wrap .tiptap p {
  margin: 0 0 1em;
}

.editor-wrap .tiptap > :first-child {
  margin-top: 0 !important;
}

.editor-wrap .tiptap h1 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin: 1em 0 .5em;
  font-family: Unica One, cursive;
  font-size: 1.8em;
  font-weight: 400;
  line-height: 1.3;
}

.editor-wrap .tiptap h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin: 1.2em 0 .5em;
  font-family: Unica One, cursive;
  font-size: 1.8em;
  font-weight: 400;
  line-height: 1.25;
}

.editor-wrap .tiptap h3 {
  color: var(--text-primary);
  margin: 1em 0 .4em;
  font-family: Inter, sans-serif;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.4;
}

.editor-wrap .tiptap blockquote {
  color: #666;
  border-left: 3px solid #d0cdc5;
  margin: 1em 0;
  padding-left: 1.2em;
  font-family: "Source Serif 4", serif;
  font-size: .95em;
}

body.dark .editor-wrap .tiptap blockquote {
  color: #999;
  border-left-color: #555;
}

.editor-wrap .tiptap code {
  background: #0000000d;
  border-radius: 3px;
  padding: 2px 5px;
  font-family: Google Sans Mono, JetBrains Mono, monospace;
  font-size: .8em;
}

body.dark .editor-wrap .tiptap code {
  background: #ffffff14;
}

.editor-wrap .tiptap pre {
  background: var(--code-bg);
  color: var(--code-text);
  overflow-x: auto;
  border-radius: 4px;
  margin: 1em 0;
  padding: 16px;
}

.editor-wrap .tiptap pre code {
  color: var(--code-text);
  background: none;
  border-radius: 0;
  padding: 0;
  font-family: Google Sans Mono, JetBrains Mono, monospace;
  font-size: 14px;
  line-height: 1.5;
}

.editor-wrap .tiptap hr {
  border: none;
  border-top: 1px solid #d0cdc5;
  margin: 2em 0;
}

body.dark .editor-wrap .tiptap hr {
  border-top-color: #444;
}

.editor-wrap .tiptap ul, .editor-wrap .tiptap ol {
  margin: .5em 0 1em;
  padding-left: 1.5em;
}

.editor-wrap .tiptap ul {
  list-style-type: disc;
}

.editor-wrap .tiptap ol {
  list-style-type: decimal;
}

.editor-wrap .tiptap li {
  margin-bottom: .3em;
}

.editor-wrap .tiptap strong {
  font-weight: 700;
}

.editor-wrap .tiptap em {
  font-style: italic;
}

.editor-wrap .tiptap a {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: #0000004d;
  text-underline-offset: 2px;
  cursor: text;
  transition: text-decoration-color .15s;
}

.editor-wrap .tiptap a:hover {
  text-decoration-color: #0009;
}

body.dark .editor-wrap .tiptap a {
  text-decoration-color: #ffffff4d;
}

body.dark .editor-wrap .tiptap a:hover {
  text-decoration-color: #fff9;
}

.highlight-question {
  cursor: pointer;
  background: #4285f426;
  border-bottom: 2px solid #4285f466;
  border-radius: 2px;
  transition: background .15s;
}

.highlight-question:hover {
  background: #4285f440;
}

.highlight-suggestion {
  cursor: pointer;
  background: #fbbc0426;
  border-bottom: 2px solid #fbbc0466;
  border-radius: 2px;
  transition: background .15s;
}

.highlight-suggestion:hover {
  background: #fbbc0440;
}

.highlight-edit {
  cursor: pointer;
  background: #34a85326;
  border-bottom: 2px solid #34a85366;
  border-radius: 2px;
  transition: background .15s;
}

.highlight-edit:hover {
  background: #34a85340;
}

.highlight-voice {
  cursor: pointer;
  background: #9c27b026;
  border-bottom: 2px solid #9c27b066;
  border-radius: 2px;
  transition: background .15s;
}

.highlight-voice:hover {
  background: #9c27b040;
}

.highlight-weakness {
  cursor: pointer;
  background: #f443361f;
  border-bottom: 2px solid #f4433659;
  border-radius: 2px;
  transition: background .15s;
}

.highlight-weakness:hover {
  background: #f4433633;
}

.highlight-evidence {
  cursor: pointer;
  background: #00968826;
  border-bottom: 2px solid #00968866;
  border-radius: 2px;
  transition: background .15s;
}

.highlight-evidence:hover {
  background: #00968840;
}

.highlight-wordiness {
  cursor: pointer;
  background: #ff980026;
  border-bottom: 2px solid #ff980066;
  border-radius: 2px;
  transition: background .15s;
}

.highlight-wordiness:hover {
  background: #ff980040;
}

.highlight-factcheck {
  cursor: pointer;
  background: #e91e6326;
  border-bottom: 2px solid #e91e6366;
  border-radius: 2px;
  transition: background .15s;
}

.highlight-factcheck:hover {
  background: #e91e6340;
}

.popover {
  position: absolute;
  z-index: 300;
  background: #fff;
  border: 1px solid #0000001a;
  border-radius: 8px;
  min-width: 200px;
  max-width: 320px;
  padding: 12px 14px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  transform: translateX(-50%);
  box-shadow: 0 4px 16px #0000001f;
}

body.dark .popover {
  background: #2a2a2a;
  border-color: #ffffff1a;
  box-shadow: 0 4px 16px #0006;
}

.popover-badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 3px;
  margin-bottom: 8px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 600;
}

.popover-badge-question {
  color: #4285f4;
  background: #4285f426;
}

.popover-badge-suggestion {
  color: #b48200;
  background: #fbbc0433;
}

.popover-badge-edit {
  color: #34a853;
  background: #34a85326;
}

.popover-badge-voice {
  color: #9c27b0;
  background: #9c27b026;
}

.popover-badge-weakness {
  color: #c83228;
  background: #f443361f;
}

.popover-badge-evidence {
  color: #008276;
  background: #00968826;
}

.popover-badge-wordiness {
  color: #b46400;
  background: #ff980033;
}

.popover-badge-factcheck {
  color: #c81955;
  background: #e91e6326;
}

body.dark .popover-badge-suggestion {
  color: #fbbc04;
}

body.dark .popover-badge-weakness {
  color: #f45a50;
}

body.dark .popover-badge-wordiness {
  color: #ffaa28;
}

body.dark .popover-badge-factcheck {
  color: #f03c78;
}

.popover-comment {
  color: #333;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.5;
}

body.dark .popover-comment {
  color: #ccc;
}

.popover-edit-preview {
  background: #34a8530f;
  border: 1px solid #34a85326;
  border-radius: 4px;
  margin-bottom: 10px;
  padding: 8px 10px;
}

.popover-edit-label {
  color: #999;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
}

.popover-edit-text {
  color: #333;
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
}

body.dark .popover-edit-text {
  color: #ccc;
}

.popover-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.popover-accept-btn, .popover-reply-btn, .popover-dismiss-btn {
  cursor: pointer;
  background: none;
  border: 1px solid #0000001a;
  border-radius: 4px;
  padding: 4px 10px;
  transition: background .15s;
  font-size: 12px;
  font-weight: 500;
}

body.dark .popover-accept-btn, body.dark .popover-reply-btn, body.dark .popover-dismiss-btn {
  border-color: #ffffff1a;
}

.popover-accept-btn {
  color: #34a853;
  background: #34a8531a;
  border-color: #34a85333;
}

.popover-accept-btn:hover {
  background: #34a85333;
}

.popover-reply-btn {
  color: #555;
}

.popover-reply-btn:hover {
  background: #0000000a;
}

body.dark .popover-reply-btn {
  color: #aaa;
}

body.dark .popover-reply-btn:hover {
  background: #ffffff0f;
}

.popover-dismiss-btn {
  color: #999;
}

.popover-dismiss-btn:hover {
  color: #666;
  background: #0000000a;
}

body.dark .popover-dismiss-btn:hover {
  color: #ccc;
  background: #ffffff0f;
}

.chat-fab {
  position: fixed;
  cursor: pointer;
  z-index: 200;
  animation: fab-appear .25s ease;
  background: linear-gradient(#f5b04a 0%, #ef8a3a 40%, #e06528 80%, #d4521e 100%);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: transform .2s, box-shadow .2s, width .25s, height .25s, opacity .25s;
  bottom: 24px;
  right: 24px;
  box-shadow: 0 2px 10px #dc642840;
}

@keyframes fab-appear {
  from {
    transform: scale(.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.chat-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px #dc642859;
}

.chat-fab-recording {
  animation: fab-pulse 1s ease-in-out infinite;
  box-shadow: 0 0 #e0652880;
}

@keyframes fab-pulse {
  0% {
    box-shadow: 0 0 #e0652880;
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 12px #e0652800;
    transform: scale(1.1);
  }

  100% {
    box-shadow: 0 0 #e0652800;
    transform: scale(1);
  }
}

.chat-fab-recording:hover {
  transform: scale(1.1);
}

.chat-card {
  position: fixed;
  box-shadow: none;
  display: flex;
  z-index: 200;
  animation: chat-appear .25s ease;
  background: none;
  border: none;
  border-radius: 0;
  flex-direction: column;
  width: 310px;
  max-height: 600px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  bottom: 24px;
  right: 24px;
}

@keyframes chat-appear {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-mini-orb {
  cursor: pointer;
  background: linear-gradient(#f5b04a 0%, #ef8a3a 40%, #e06528 80%, #d4521e 100%);
  border: none;
  border-radius: 50%;
  width: 24px;
  min-width: 24px;
  height: 24px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 1px 6px #dc642833;
}

.chat-mini-orb:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 10px #dc642859;
}

.chat-messages {
  overflow-y: auto;
  display: flex;
  mask-image: linear-gradient(#0000 0%, #000 60px calc(100% - 30px), #0000 100%);
  -webkit-mask-image: linear-gradient(#0000 0%, #000 60px calc(100% - 30px), #0000 100%);
  flex-direction: column;
  flex: 1;
  gap: 8px;
  min-height: 300px;
  max-height: 520px;
  padding: 8px 4px;
}

.chat-messages::-webkit-scrollbar {
  display: none;
}

.chat-messages {
  scrollbar-width: none;
}

.chat-loading, .chat-empty {
  color: var(--text-muted);
  text-align: left;
  opacity: .5;
  padding: 16px 0;
  font-family: Lora, Georgia, serif;
  font-size: 14px;
}

.chat-msg-user, .chat-msg-assistant {
  animation: msg-appear .3s ease;
  margin-bottom: 8px;
}

@keyframes msg-appear {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg-user {
  text-align: right;
}

.chat-msg-user .chat-msg-text {
  display: inline-block;
  text-align: right;
  color: var(--text-muted);
  background: none;
  padding: 2px 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}

.chat-msg-assistant .chat-msg-text {
  color: var(--text-secondary);
  background: none;
  padding: 2px 0;
  font-family: Lora, Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
}

.chat-input-area {
  display: flex;
  flex-direction: row-reverse;
  align-items:  center;
  gap: 8px;
  padding: 24px 0 0;
}

.chat-input {
  color: var(--text-muted);
  outline: none;
  background: none;
  border: none;
  border-radius: 0;
  flex: 1;
  padding: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-style: italic;
}

.chat-input:disabled {
  opacity: .6;
}

.chat-input::placeholder {
  color: var(--text-muted);
}

.modal-overlay {
  position: fixed;
  display: flex;
  z-index: 1000;
  backdrop-filter: blur(4px);
  background: #00000080;
  justify-content: center;
  align-items:  center;
  inset: 0;
}

.modal {
  background: var(--bg-surface);
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  flex-direction: column;
  width: 90%;
  max-width: 500px;
  max-height: 70vh;
  box-shadow: 0 20px 60px #0000004d;
}

body.dark .modal {
  box-shadow: 0 20px 60px #00000080;
}

.modal-confirm {
  text-align: center;
  max-width: 340px;
  padding: 24px 28px;
}

.confirm-text {
  color: var(--text-primary);
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
}

.confirm-subtext {
  color: var(--text-muted);
  margin: 0 0 20px;
  font-size: 13px;
}

.confirm-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.confirm-cancel, .confirm-ok {
  cursor: pointer;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 7px 20px;
  transition: all .15s;
  font-size: 13px;
  font-weight: 500;
}

.confirm-cancel {
  color: var(--text-muted);
  background: none;
}

.confirm-cancel:hover {
  background: var(--hover-bg);
}

.confirm-ok {
  color: #fff;
  background: #ef4444;
  border-color: #ef4444;
}

.confirm-ok:hover {
  background: #dc2626;
}

.modal-header {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  justify-content: space-between;
  align-items:  center;
  padding: 1.25rem 1.5rem;
}

.modal-header h2 {
  letter-spacing: 2px;
  color: var(--text-primary);
  margin: 0;
  font-family: Unica One, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.modal-close {
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-content {
  overflow-y: auto;
  flex: 1;
  padding: 1rem;
}

.modal-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
  font-size: .9rem;
}

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-item {
  display: flex;
  cursor: pointer;
  border-radius: 8px;
  justify-content: space-between;
  align-items:  center;
  padding: 1rem 1.25rem;
  transition: background-color .2s;
}

.post-item:hover {
  background: var(--bg-tertiary);
}

.post-name {
  color: var(--text-primary);
  text-transform: capitalize;
  font-size: .95rem;
}

.post-date {
  color: var(--text-muted);
  font-family: Google Sans Mono, JetBrains Mono, monospace;
  font-size: .8rem;
}

@media (width <= 600px) {
  .content {
    padding: 56px 16px 200px;
  }

  .chat-card {
    width: auto;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .chat-fab {
    width: 32px;
    height: 32px;
    bottom: 16px;
    right: 16px;
  }
}
