/* BOFH Excuse Widget — Catppuccin themed
   Relies on Chirpy's CSS custom properties (defined in _light.scss / _dark.scss).
*/

.bofh-widget {
  max-width: 400px;
  margin: 1.5rem auto;
  padding: 1.25rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.5rem;
  background-color: var(--card-bg);
  box-shadow: var(--card-shadow);
  color: var(--text-color);
  transition: box-shadow 0.3s ease;
}

.bofh-widget:hover {
  box-shadow: var(--card-shadow), 0 4px 12px rgb(0 0 0 / 8%);
}

.bofh-excuse-output {
  text-align: center;
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 0.375rem;
  border: 1px solid var(--main-border-color);
  margin-bottom: 1rem;
}

.bofh-excuse-output p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
}

.bofh-widget-footer {
  text-align: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--main-border-color);
}

@media (prefers-reduced-motion: reduce) {
  .bofh-widget {
    transition: none;
  }
}
