/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #f7f7f9;
  color: #111;
}

.logo-image {
  height: 40px;
  width: auto;
}

.page h1 {
  margin-top: 0;
}

.admin-form-wide input[type="text"],
.admin-form-wide input[type="url"],
.admin-form-wide input[type="number"],
.admin-form-wide input[type="email"],
.admin-form-wide textarea {
  width: 100%;
  max-width: 900px;
}

.max-width-wrapper {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}

.admin-transcript-list {
  border: 1px solid #e2e3e8;
  border-radius: 8px;
  overflow: hidden;
}

.admin-transcript-row {
  border-top: 1px solid #ececf0;
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  padding: 0.45rem 0.6rem;
}

.admin-transcript-row:first-child {
  border-top: 0;
}

.admin-transcript-time {
  color: #666;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
}

.admin-transcript-text {
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-transcript-fallback {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 6px;
  max-height: 320px;
  overflow: auto;
  padding: 0.75rem;
  white-space: pre-wrap;
}
