/*
 * 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.
 */

:root {
  --bulma-card-footer-padding: 1.5rem; /* Example value */
  /* Add other variable overrides here */
}

.badge {
  font-size: 0.8em;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: bold;
}

.badge.archived {
  background-color: #dc3545;
  color: white;
}

.badge.published {
  background-color: #28a745;
  color: white;
}

.badge.draft {
  background-color: #ffc107;
  color: black;
}

.auth-switch {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.75);
}

.auth-switch a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-block;
  padding: 0.35rem 0;
}

.auth-switch a:hover,
.auth-switch a:focus-visible {
  color: rgba(0, 0, 0, 0.9);
}

.auth-lede {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

.auth-secondary {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  line-height: 1.6;
}

.auth-secondary-link {
  display: inline-block;
  padding: 0.4rem 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-secondary-link:hover,
.auth-secondary-link:focus-visible {
  text-decoration-thickness: 2px;
}

.auth-page {
  padding: 1.5rem;
}

@media (max-width: 480px) {
  .auth-page {
    padding: 1.25rem;
  }
}