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

pre {
  white-space: pre-wrap;
  word-break: break-word;
}

input,
textarea,
select {
  color: #4e5b71;
}

/* Navbar Styles for Admin Pages */
/* :root {
  --bg: #0f172a;
  --card: #16203a;
  --accent: #38bdf8;
  --accent-dark: #0ea5e9;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.3);
} 

.navbar {
  background: rgba(22, 32, 58, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar__brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.navbar__brand:hover {
  color: var(--accent);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar__link {
  color: var(--muted);
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
}

.navbar__link:hover {
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
}

.navbar__link--primary {
  background: var(--accent);
  color: #0f172a;
  font-weight: 600;
}

.navbar__link--primary:hover {
  background: var(--accent-dark);
  color: #0f172a;
}

/* Admin-specific styling improvements */
/* .admin-layout {
  background: #f8fafc;
  min-height: 100vh;
}

.admin-header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.admin-header nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.admin-header strong {
  color: #1e293b;
  margin-right: 0.5rem;
}

.admin-header a {
  color: #475569;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.admin-header a:hover {
  background: #f1f5f9;
  color: #0ea5e9;
}

.admin-header .inline-form {
  display: inline;
  margin: 0;
}

.admin-header button {
  color: #dc2626;
  background: none;
  border: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  font-family: inherit;
}

.admin-header button:hover {
  background: #fee2e2;
}

.admin-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.notice {
  background: #dbeafe;
  color: #1e40af;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid #3b82f6;
}

.alert {
  background: #fee2e2;
  color: #991b1b;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid #ef4444;
}*/