/* Page-specific styles for bug-report.html */
body.tool-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
}

.breadcrumb-trail {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: var(--accent);
  text-transform: none;
}

.breadcrumb-link {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb-link:hover,
.breadcrumb-link:focus {
  color: var(--accent-hover);
  text-decoration: underline;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
  color: var(--fg);
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #0ff2;
}

p.tagline {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--fg);
}

textarea {
  display: block;
  width: 80vw;
  max-width: 1200px;
  background: #000;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 4px;
  padding: .8rem;
  font-family: var(--font);
  min-height: 28rem;
  resize: vertical;
}

button {
  margin-top: 1rem;
  padding: .75rem 1.5rem;
  background: var(--accent);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  font-family: var(--font);
  cursor: pointer;
  transition: background .3s ease, transform .2s ease;
}
button:hover { background: var(--accent-hover); }
button:active { transform: scale(.96); }

.fade-out { opacity: 0; transition: opacity .5s ease; pointer-events: none; }
#thanksMsg {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 2rem;
  opacity: 0;
  transition: opacity .5s ease;
}
#thanksMsg.show { opacity: 1; }

/* === Inline Styles Moved to CSS === */
.trouble-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #888;
}

.accent-link { color: var(--accent); }
.underline { text-decoration: underline; }

.return-link { margin-top: 2rem; }
