/* STARLINE - exact static mirror of React design system */

:root {
  --background: #ffffff;
  --surface: #fafafa;
  --foreground: #111111;
  --muted: #f4f4f4;
  --muted-foreground: #6b6b6b;
  --border: #ececec;
  --radius: 12px;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", "GT Sectra", ui-serif, Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
  -webkit-font-smoothing: antialiased;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

::selection {
  background: #111;
  color: #fff;
}

/* Typography */
.text-display {
  margin: 0;
  font-size: 44px;
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.text-h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.text-h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.text-body {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}
.text-quote {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 400;
  font-style: italic;
}
.text-caption {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--muted-foreground);
}
.text-muted-foreground {
  color: var(--muted-foreground);
}
.page-heading {
  margin: 0;
}
.page-heading h1 {
  line-height: 1;
}
.page-heading p {
  margin: 0;
  line-height: 1.2;
  padding-top: 0.75rem;
  padding-bottom: 1.25rem;
}
.page-heading + * {
  margin-top: 0;
}

/* Buttons */
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--foreground);
  color: var(--background);
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 400ms ease;
}
.btn-solid:hover {
  opacity: 0.85;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--foreground);
  padding: 13px 19px;
  border-radius: 999px;
  border: 1px solid var(--foreground);
  font-size: 15px;
  font-weight: 500;
  transition: opacity 400ms ease;
}
.btn-outline:hover {
  opacity: 0.85;
}
.link-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
}
.cta-pill {
  display: block;
  width: 100%;
  border-radius: 999px;
  padding: 16px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  background: var(--foreground);
  color: var(--background);
  transition: opacity 400ms ease;
  border: none;
  cursor: pointer;
}
.cta-pill:hover {
  opacity: 0.85;
}
.cta-pill:disabled {
  opacity: 0.25;
  cursor: default;
}
.cta-pill.inverse {
  background: #fafafa;
  color: #0a0a0a;
}

/* Layout */
.min-h-screen {
  min-height: 100vh;
}
.page-shell {
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
}
.page-shell__inner {
  margin: 0 auto;
  max-width: 42rem;
  padding: 1.25rem 1.5rem 8rem;
}
/* Onboarding: lock to phone viewport (app pages stay free to scroll) */
html:has(.onboarding-shell),
body:has(.onboarding-shell) {
  height: 100%;
  overflow: hidden;
}
.onboarding-shell {
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.onboarding-inner {
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 42rem;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  padding: 3.5rem 1.5rem 2.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.flex {
  display: flex;
}
.flex-1 {
  flex: 1;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.self-start {
  align-self: flex-start;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-x-6 {
  column-gap: 1.5rem;
}
.gap-y-3 {
  row-gap: 0.75rem;
}
.w-full {
  width: 100%;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.tabular-nums {
  font-variant-numeric: tabular-nums;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-55 {
  opacity: 0.55;
}
.opacity-60 {
  opacity: 0.6;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}

/* Spacing */
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-7 {
  padding: 1.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-14 {
  padding-top: 3.5rem;
}
.pt-20 {
  padding-top: 5rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-32 {
  padding-bottom: 8rem;
}

/* Borders / surfaces */
.border {
  border: 1px solid var(--border);
}
.border-t {
  border-top: 1px solid var(--border);
}
.border-y {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.border-b {
  border-bottom: 1px solid var(--border);
}
.border-border {
  border-color: var(--border);
}
.border-foreground {
  border-color: var(--foreground);
}
.bg-background {
  background: var(--background);
}
.bg-surface {
  background: var(--surface);
}
.bg-black-40 {
  background: rgba(0, 0, 0, 0.4);
}
.rounded-full {
  border-radius: 999px;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-t-3xl {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
.divide-y > * + * {
  border-top: 1px solid var(--border);
}
.list-none {
  list-style: none;
  padding: 0;
  /* Keep margin unset so spacing utilities like .mt-12 can apply */
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

/* Avatar */
.avatar {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface);
  font-size: 13px;
}

/* Inputs */
.field-line {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 1rem 0;
  outline: none;
}
.field-line:focus {
  border-bottom-color: var(--foreground);
}
.field-line:disabled {
  opacity: 0.3;
}
.time-24 {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.time-24.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.time-24__select,
.date-24__select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: inherit;
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  padding: 0.75rem 0.15rem;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  min-width: 2.75rem;
  text-align: center;
}
.time-24__select:focus,
.date-24__select:focus {
  border-bottom-color: var(--foreground);
}
.time-24__sep,
.date-24__sep {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  opacity: 0.55;
  padding-bottom: 0.75rem;
}
.date-24 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.date-24__select {
  width: 100%;
  min-width: 0;
  text-align: left;
  padding-left: 0;
}
.date-24__select--year {
  min-width: 0;
}
.city-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.city-preset {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: inherit;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 13px;
  line-height: 1.3;
  opacity: 0.75;
  transition: opacity 200ms ease, background 200ms ease, border-color 200ms ease;
}
.city-preset:hover {
  opacity: 1;
}
.city-preset.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}
.oracle-input {
  flex: 1;
  resize: none;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 15px;
  line-height: 1.55;
  outline: none;
}
.oracle-input:focus {
  border-color: var(--foreground);
}
.oracle-input:disabled {
  opacity: 0.4;
}
.oracle-topic {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1rem;
  padding: 0.55rem 0.4rem 0.55rem 0.9rem;
}
.oracle-topic__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.oracle-topic__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--foreground);
}
.oracle-topic__sub {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1.3;
  color: var(--muted-foreground);
}
.oracle-topic__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--foreground);
  opacity: 0.45;
  transition: opacity 200ms ease, background 200ms ease;
}
.oracle-topic__close:hover {
  opacity: 1;
  background: var(--muted);
}

/* Bottom nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.bottom-nav__inner {
  margin: 0 auto;
  display: flex;
  max-width: 42rem;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 0.5rem;
}
.bottom-nav__item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 0;
  font-size: 13px;
  transition: opacity 200ms ease;
  opacity: 0.55;
  font-weight: 400;
}
.bottom-nav__item.is-active {
  opacity: 1;
  font-weight: 600;
}

/* Oracle composer */
.oracle-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 4rem;
  z-index: 30;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.oracle-bar__inner {
  margin: 0 auto;
  max-width: 42rem;
  padding: 0.75rem 1.5rem;
}
.user-bubble {
  display: inline-block;
  max-width: 85%;
  border-radius: 1rem;
  background: var(--surface);
  padding: 0.5rem 1rem;
  text-align: left;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.overlay.is-open {
  display: flex;
}
.overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.overlay__panel {
  position: relative;
  width: 100%;
  max-width: 42rem;
  border-radius: 1.5rem 1.5rem 0 0;
  background: var(--background);
  padding: 1.5rem;
  animation: slideUp 400ms ease;
}
@media (min-width: 640px) {
  .overlay {
    align-items: center;
  }
  .overlay__panel {
    border-radius: 1.5rem;
    margin: 0 1.5rem;
  }
  .p-sm-9 {
    padding: 2.25rem;
  }
}

/* Day card — featured block against the rest of the page */
.day-card {
  border-radius: 1.5rem;
  border: 1px solid #141414;
  background: #0a0a0a;
  color: #fafafa;
  padding: 2rem 1.75rem;
  text-align: left;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 48px -28px rgba(0, 0, 0, 0.55);
}
.day-card .text-caption {
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
}
.day-card .text-quote {
  color: #fafafa;
}
.day-card .border-t,
.day-card .border-border {
  border-color: rgba(255, 255, 255, 0.14);
}
.day-card .link-underline {
  color: rgba(255, 255, 255, 0.78);
}
.day-card .link-underline:hover {
  color: #fafafa;
}
@media (max-width: 639px) {
  .day-card {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 2.25rem 1.5rem;
  }
}
@media (min-width: 640px) {
  .day-card {
    padding: 2.5rem 2.25rem;
  }
}

/* Share sheet */
.share-sheet {
  max-height: min(92vh, 760px);
  overflow-y: auto;
}
.share-formats {
  display: flex;
  gap: 0.5rem;
}
.share-format {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.625rem 0.75rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}
.share-format.is-active {
  color: var(--foreground);
  border-color: var(--foreground);
  background: var(--background);
}
.share-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--muted);
}
.share-preview canvas {
  display: block;
  max-width: 100%;
  height: auto;
  background: #fff;
  box-shadow: 0 8px 32px -16px rgba(0, 0, 0, 0.2);
}
.share-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.share-actions .btn-solid,
.share-actions .btn-outline {
  width: 100%;
  border-radius: 999px;
}

/* Plan cards */
.plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
}

/* Switch */
.switch {
  position: relative;
  height: 1.75rem;
  width: 3rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: background 200ms ease;
}
.switch__thumb {
  position: absolute;
  top: 2px;
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 999px;
  transition: left 200ms ease, background 200ms ease;
}
.switch.is-on {
  background: var(--foreground);
}
.switch.is-on .switch__thumb {
  left: 22px;
  background: var(--background);
}
.switch:not(.is-on) {
  background: transparent;
}
.switch:not(.is-on) .switch__thumb {
  left: 2px;
  background: var(--foreground);
}

/* Blur locked */
.blur-lock {
  filter: blur(6px);
  user-select: none;
}

/* Friend match highlight */
.friend-match {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Splash / dark onboarding */
.theme-dark {
  background: #0a0a0a;
  color: #fafafa;
}
.theme-dark .text-caption,
.theme-dark .text-muted-foreground {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .border-border,
.theme-dark .border-t,
.theme-dark .border-y,
.theme-dark .border-b {
  border-color: rgba(255, 255, 255, 0.14);
}
.theme-dark .field-line {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color-scheme: dark;
}
.theme-dark .field-line:focus {
  border-bottom-color: #fafafa;
}
.theme-dark .field-line::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.theme-dark .time-24__select,
.theme-dark .date-24__select {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color-scheme: dark;
}
.theme-dark .time-24__select:focus,
.theme-dark .date-24__select:focus {
  border-bottom-color: #fafafa;
}
.theme-dark .accent-foreground {
  accent-color: #fafafa;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.wheel-spin {
  animation: spin 12s linear infinite;
  transform-origin: center;
}

/* Natal chart wheel — same featured plaque as day card */
.natal-chart-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  border: 1px solid #141414;
  background: #0a0a0a;
  color: #fafafa;
  padding: 1.25rem 0.75rem;
  overflow: visible;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 48px -28px rgba(0, 0, 0, 0.55);
}
@media (max-width: 639px) {
  .natal-chart-panel {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 1.5rem 0.75rem;
  }
}
@media (min-width: 640px) {
  .natal-chart-panel {
    padding: 1.5rem 1rem;
  }
}
.natal-chart {
  width: min(100%, 520px);
  aspect-ratio: 1;
  overflow: visible;
}
.natal-chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  color: #fafafa;
}
.natal-pad {
  fill: #fafafa;
}
.natal-glyph {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  fill: #0a0a0a;
}
.natal-planet-list {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.005em;
  fill: #fafafa;
  opacity: 0.88;
}
.natal-planet-glyph {
  font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols", "DejaVu Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  fill: #fafafa;
  opacity: 1;
}
.natal-sign-glyph {
  font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols", "DejaVu Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
  fill: #fafafa;
  color: #fafafa;
  font-variant-emoji: text;
  -webkit-text-fill-color: #fafafa;
}
.natal-house {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  fill: currentColor;
  opacity: 0.55;
}
.fade-in {
  animation: fadeIn 600ms ease;
}
.hidden {
  display: none !important;
}
.inline-block {
  display: inline-block;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.inset-0 {
  inset: 0;
}
.inset-x-0 {
  left: 0;
  right: 0;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.min-h-quote {
  min-height: 3rem;
}
.h-4 {
  height: 1rem;
}
.w-4 {
  width: 1rem;
}
.accent-foreground {
  accent-color: var(--foreground);
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 1;
}
.-mr-2 {
  margin-right: -0.5rem;
}
.-mt-2 {
  margin-top: -0.5rem;
}
.max-w-85 {
  max-width: 85%;
}
.leading-none {
  line-height: 1;
}
.transition-opacity {
  transition: opacity 400ms ease;
}
.hover-opacity:hover {
  opacity: 1;
}
.outline-none {
  outline: none;
}
.resize-none {
  resize: none;
}
.disabled-opacity:disabled {
  opacity: 0.3;
}
