/**
 * Help Center Layout & Component Styles
 * prezgo.app Help Center Redesign
 */

:root {
  color-scheme: dark;
  --bg: #0b1326;
  --bg-elevated: rgba(22, 32, 54, 0.72);
  --bg-soft: rgba(30, 41, 59, 0.55);
  --surface: #111b31;
  --text: #e8eefc;
  --muted: #9aa8c7;
  --primary: #a4c9ff;
  --primary-soft: rgba(164, 201, 255, 0.14);
  --primary-border: rgba(164, 201, 255, 0.28);
  --secondary: #b0b2ff;
  --vibrant-cyan: #00E5FF;
  --accent-notes: #7eb6ff;
  --accent-slides: #b8a4ff;
  --accent-handouts: #7ee0c3;
  --accent-error: #ffb4ab;
  --border: rgba(192, 199, 214, 0.14);
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.15);
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Outfit", "Hanken Grotesk", var(--font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: clip;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Ambient background glow matching site theme */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow::before,
.bg-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.bg-glow::before {
  width: 420px;
  height: 420px;
  top: -80px;
  left: 10%;
  background: rgba(49, 49, 192, 0.38);
}

.bg-glow::after {
  width: 380px;
  height: 380px;
  top: 140px;
  right: 5%;
  background: rgba(0, 229, 255, 0.16);
}

/* Site header: logo left, optional hamburger right (mobile) */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.5rem 0 1.85rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}

.logo-link:hover {
  opacity: 0.9;
  text-decoration: none;
}

.logo {
  height: 2.5rem;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 640px) {
  .logo {
    height: 3rem;
  }
}

/* Outer Wrapper */
.help-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 5rem;
}

/* Hero Search Section */
.help-hero {
  text-align: center;
  padding: 2rem 0 3rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.25rem;
}

.help-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, #ffffff 20%, var(--primary) 60%, var(--vibrant-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.help-hero p {
  margin: 0 auto 2.25rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.help-search-container {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.help-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.help-search-icon {
  position: absolute;
  left: 1.25rem;
  color: var(--muted);
  font-size: 1.35rem;
  pointer-events: none;
}

.help-search-input {
  width: 100%;
  padding: 1.1rem 5.5rem 1.1rem 3.25rem;
  background: rgba(17, 27, 49, 0.95);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 1.02rem;
  outline: none;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.help-search-input:focus {
  border-color: var(--vibrant-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.18), var(--shadow);
}

.help-kbd-badge {
  position: absolute;
  right: 1.25rem;
  padding: 0.25rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: monospace;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  pointer-events: none;
}

.help-search-clear {
  position: absolute;
  right: 3.5rem;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.help-search-clear:hover {
  color: var(--text);
}

/* Live Search Dropdown */
.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background: #111b31;
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 100;
  max-height: 380px;
  overflow-y: auto;
  text-align: left;
  display: none;
}

.search-results-dropdown.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(164, 201, 255, 0.1);
  text-decoration: none;
}

.search-result-icon {
  color: var(--vibrant-cyan);
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

.search-result-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.search-result-snippet {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Section Headings */
.section-title {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 3rem 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: -0.02em;
}

/* Bento Category Cards */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.4rem;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.55rem 1.8rem;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.bento-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-border);
  background: rgba(30, 41, 59, 0.75);
  text-decoration: none;
}

.bento-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.bento-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.bento-card.notes .bento-icon-wrapper {
  background: rgba(126, 182, 255, 0.15);
  color: var(--accent-notes);
}

.bento-card.slides .bento-icon-wrapper {
  background: rgba(184, 164, 255, 0.15);
  color: var(--accent-slides);
}

.bento-card.handouts .bento-icon-wrapper {
  background: rgba(126, 224, 195, 0.15);
  color: var(--accent-handouts);
}

.bento-card.general .bento-icon-wrapper {
  background: rgba(0, 229, 255, 0.15);
  color: var(--vibrant-cyan);
}

.bento-card.troubleshoot .bento-icon-wrapper {
  background: rgba(255, 180, 171, 0.15);
  color: var(--accent-error);
}

.bento-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--muted);
}

.bento-card-title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 650;
  margin: 0 0 0.45rem 0;
  color: var(--text);
}

.bento-card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
  flex-grow: 1;
}

.bento-card-footer {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
}

.bento-card-footer span {
  transition: transform 0.15s ease;
}

.bento-card:hover .bento-card-footer span {
  transform: translateX(4px);
}

/* Quick Support Grid */
.support-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.support-action-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.support-action-card:hover {
  border-color: var(--primary-border);
  background: rgba(30, 41, 59, 0.75);
  text-decoration: none;
}

.support-action-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.support-action-title {
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.15rem;
  font-family: var(--display);
}

.support-action-desc {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------------------------------------------------- */
/* Sticky Side Panel Documentation Layout */
/* ---------------------------------------------------- */

.help-doc-page {
  display: flex;
  gap: 2.5rem;
  position: relative;
  margin-top: 1rem;
}

/* Sticky Sidebar Drawer */
.help-sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 1.5rem;
  height: calc(100vh - 3rem);
  overflow-y: auto;
  padding-right: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(192, 199, 214, 0.2) transparent;
}

.help-sidebar::-webkit-scrollbar {
  width: 4px;
}

.help-sidebar::-webkit-scrollbar-thumb {
  background: rgba(192, 199, 214, 0.2);
  border-radius: 999px;
}

.sidebar-group-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin: 1.5rem 0 0.65rem 0.65rem;
}

.sidebar-group-title:first-child {
  margin-top: 0.25rem;
}

.sidebar-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-nav-item a,
.sidebar-nav-item button,
.sidebar-btn-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
  border-top: none;
  border-right: none;
  border-bottom: none;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  font-family: inherit;
}

.sidebar-nav-item a:hover,
.sidebar-nav-item button:hover,
.sidebar-btn-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.sidebar-nav-item a.active {
  color: #ffffff;
  background: var(--primary-soft);
  border-left-color: var(--primary);
  font-weight: 600;
}

.sidebar-nav-item a .nav-icon {
  font-size: 1.15rem;
  color: var(--muted);
  transition: color 0.15s ease;
}

.sidebar-nav-item a.active .nav-icon,
.sidebar-nav-item a:hover .nav-icon {
  color: var(--primary);
}

/* Breadcrumbs */
.help-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.help-breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.help-breadcrumbs a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.help-breadcrumbs .current {
  color: var(--text);
  font-weight: 600;
}

.help-breadcrumbs .sep {
  font-size: 0.8rem;
  color: var(--primary-border);
}

/* Documentation Content Area */
.help-doc-content {
  flex: 1;
  min-width: 0;
}

/*
 * Header hamburger on the right (help-nav-toggle).
 * Class is intentionally NOT mobile-sidebar-toggle — escapes old floating FAB CSS.
 */
.help-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  margin: 0 0 0 auto;
  flex-shrink: 0;
  border: 1px solid var(--border, rgba(192, 199, 214, 0.14));
  border-radius: var(--radius-sm, 12px);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text, #e8eefc);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  position: relative;
  z-index: 110;
  box-sizing: border-box;
  /* Never let stale rules pin this as a bottom FAB */
  bottom: auto !important;
  left: auto !important;
  top: auto !important;
  box-shadow: none !important;
}

.help-nav-toggle .material-symbols-outlined {
  font-size: 1.55rem;
  line-height: 1;
}

.help-nav-toggle:hover {
  background: var(--primary-soft, rgba(164, 201, 255, 0.14));
  border-color: var(--primary-border, rgba(164, 201, 255, 0.28));
  color: var(--primary, #a4c9ff);
}

.help-nav-toggle[aria-expanded="true"] {
  background: var(--primary-soft, rgba(164, 201, 255, 0.14));
  border-color: var(--primary-border, rgba(164, 201, 255, 0.28));
  color: var(--primary, #a4c9ff);
}

body.help-drawer-open {
  overflow: hidden;
}

/* Open-tool CTA on product help guides */
.help-tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 0.25rem;
}

.help-tool-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--vibrant-cyan);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.help-tool-cta:hover {
  opacity: 0.92;
  text-decoration: none;
  color: var(--bg);
  transform: translateY(-1px);
}

.help-tool-cta .material-symbols-outlined {
  font-size: 1.15rem;
}

/* Base overlay hidden; mobile rules in @media set fixed geometry */
.sidebar-overlay {
  display: none;
}

/* Article Feedback Card */
.article-feedback-card {
  margin-top: 4rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feedback-question {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.feedback-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-feedback {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-feedback:hover {
  background: var(--primary-soft);
  border-color: var(--primary-border);
  color: var(--primary);
}

.feedback-thanks-message {
  display: none;
  color: var(--accent-handouts);
  font-weight: 600;
  font-size: 0.92rem;
  align-items: center;
  gap: 0.4rem;
}

/* Responsive Rules */
@media (max-width: 960px) {
  .help-doc-page {
    padding-top: 0.5rem;
  }

  /* Keep normal (non-sticky) header — logo left, menu right */
  .site-header {
    position: relative;
    background: transparent;
    backdrop-filter: none;
  }

  /* Drawer slides in from the right so it does not cover the logo */
  .help-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    left: auto;
    bottom: 0;
    width: min(280px, 86vw);
    height: 100dvh;
    max-height: 100vh;
    background: var(--bg, #0b1326);
    border-left: 1px solid var(--border, rgba(192, 199, 214, 0.14));
    border-right: none;
    border-top: none;
    z-index: 200;
    padding: 1.25rem 1.25rem 2rem;
    transition: right 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow, 0 18px 50px rgba(0, 0, 0, 0.35));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .help-sidebar.open {
    right: 0;
    left: auto;
  }

  .help-nav-toggle {
    display: inline-flex;
  }

  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(11, 19, 38, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 190;
  }

  .sidebar-overlay.open {
    display: block;
  }
}

@media (max-width: 640px) {
  .help-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .help-hero {
    padding: 1.5rem 0 2.25rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .article-feedback-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
  }
}

/* Bug Report Modal — fixed overlay above footer/header (escape page stacking) */
.bug-modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  width: 100%;
  min-height: 100%;
  min-height: 100dvh;
  margin: 0;
  background: rgba(11, 19, 38, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* Above sticky header (100), drawer (95), footer, and any in-page chrome */
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.bug-modal-backdrop.open {
  display: flex;
}

body.bug-modal-open {
  overflow: hidden;
}

.bug-modal-card {
  width: 100%;
  max-width: 500px;
  margin: auto;
  background: #162036;
  background: var(--bg-elevated, #162036);
  border: 1px solid var(--border, rgba(192, 199, 214, 0.14));
  border-radius: var(--radius, 16px);
  padding: 1.75rem;
  box-shadow: var(--shadow, 0 18px 50px rgba(0, 0, 0, 0.35));
  position: relative;
  box-sizing: border-box;
  color: var(--text, #e8eefc);
}

.bug-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.bug-modal-title {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.35rem 0;
}

.bug-modal-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.bug-modal-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bug-modal-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.bug-form-group {
  margin-bottom: 1.1rem;
}

.bug-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.bug-form-input,
.bug-form-textarea,
.bug-form-select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: rgba(11, 19, 38, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  box-sizing: border-box;
}

.bug-form-input:focus,
.bug-form-textarea:focus,
.bug-form-select:focus {
  outline: none;
  border-color: var(--vibrant-cyan);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.15);
}

.bug-form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-bug-submit {
  flex: 1;
  padding: 0.75rem 1.25rem;
  background: var(--vibrant-cyan);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.btn-bug-submit:hover {
  opacity: 0.9;
}

.btn-bug-cancel {
  padding: 0.75rem 1.25rem;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-bug-cancel:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.bug-success-msg {
  display: none;
  background: rgba(126, 224, 195, 0.12);
  border: 1px solid var(--accent-handouts, #7ee0c3);
  border-radius: var(--radius-sm, 12px);
  padding: 1.25rem;
  color: var(--accent-handouts, #7ee0c3);
  font-size: 0.92rem;
  line-height: 1.5;
}

.bug-error-msg {
  display: none;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.55);
  border-radius: var(--radius-sm, 12px);
  padding: 0.85rem 1rem;
  color: #ffb4b4;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.bug-form-input,
.bug-form-textarea,
.bug-form-select {
  color-scheme: dark;
}

.btn-bug-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
