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

/* Admin Preview Bar */
.admin-preview-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem;
  background: #fef3c7;
  border-top: 2px solid #f59e0b;
  font-size: 0.875rem;
  color: #92400e;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.admin-preview-bar__status {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f59e0b;
  color: #fff;
  padding: 0.125rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
}

.admin-preview-bar__message {
  flex: 1;
}

.admin-preview-bar__link {
  color: #92400e;
  font-weight: 600;
  text-decoration: underline;
}

.admin-preview-bar__link:hover {
  color: #78350f;
}
