/* BOFH Excuse Widget Styles - Theme Integrated */

.bofh-widget {
  max-width: 400px;
  margin: 1.5rem auto;
  padding: 1.25rem;
  border: 1px solid var(--border-color, rgba(158, 158, 158, 0.2));
  border-radius: 0.5rem;
  background-color: var(--main-bg, var(--card-bg, #ffffff));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: inherit;
  transition: box-shadow 0.3s ease;
}

[data-theme="dark"] .bofh-widget {
  background-color: var(--card-bg, #1e1e1e);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color, #e0e0e0);
}

.bofh-widget:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

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

[data-theme="dark"] .bofh-excuse-output {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.1);
}

.bofh-excuse-output p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: inherit;
}

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

[data-theme="dark"] .bofh-widget-footer {
  border-top-color: rgba(255, 255, 255, 0.05);
}

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