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

/* Base styles following design principles - limited color palette */
:root {
  --primary-color: #2563eb;
  --base-text: #374151;
  --light-gray: #f9fafb;
  --medium-gray: #6b7280;
}

* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--base-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Styles - Following Design Guidelines */
.site-header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--base-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.logo-text:hover {
  color: var(--primary-color);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--base-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link-primary {
  background: var(--primary-color);
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Flash Messages */
.flash-notice, .flash-alert {
  padding: 16px 24px;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.flash-notice {
  background: #d1fae5;
  color: #065f46;
  border-bottom: 1px solid #a7f3d0;
}

.flash-alert {
  background: #fee2e2;
  color: #991b1b;
  border-bottom: 1px solid #fecaca;
}

/* Main content adjustment for sticky header */
.main-content {
  min-height: calc(100vh - 80px);
}

/* Hero Section - CodeFast inspired */
.hero-section {
  padding: 120px 0 80px;
  text-align: center;
  background: white;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--base-text);
}

.hero-title .highlight {
  color: var(--primary-color);
  position: relative;
}

.hero-subtitle {
  font-size: 1.375rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

/* Primary CTA - single focus point */
.cta-primary {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.2s ease;
}

.cta-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-subtext {
  margin-top: 12px;
  color: var(--medium-gray);
  font-size: 0.875rem;
}

/* Problem Section */
.problem-section {
  padding: 80px 0;
  background: var(--light-gray);
  text-align: center;
}

.problem-text {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Solution Section */
.solution-section {
  padding: 80px 0;
  text-align: center;
  background: white;
}

.solution-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--base-text);
}

.solution-text {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* How It Works - Clean layout */
.how-it-works {
  padding: 80px 0;
  background: var(--light-gray);
  text-align: center;
}

.how-it-works h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--base-text);
}

.steps {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  gap: 60px;
}

.step {
  flex: 1;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--base-text);
  line-height: 1.4;
}

.step p {
  color: var(--medium-gray);
  font-size: 1rem;
}

/* Benefits Grid */
.benefits-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.benefits-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--base-text);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit {
  text-align: left;
}

.benefit h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--base-text);
  line-height: 1.4;
}

.benefit p {
  color: var(--medium-gray);
  font-size: 1rem;
}

/* Social Proof */
.social-proof-section {
  padding: 80px 0;
  background: var(--light-gray);
  text-align: center;
}

.testimonial {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--base-text);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.4;
}

.testimonial cite {
  display: block;
  margin-top: 24px;
  font-size: 1rem;
  color: var(--medium-gray);
  font-style: normal;
  font-weight: 400;
}

/* Guarantee Section */
.guarantee-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.guarantee-card {
  max-width: 500px;
  margin: 0 auto;
  padding: 48px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
}

.guarantee-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--base-text);
}

.guarantee-card p {
  font-size: 1.125rem;
  color: var(--medium-gray);
  margin-bottom: 32px;
}

/* Authentication Forms - Following Design Guidelines */
.auth-container {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: var(--light-gray);
}

.auth-card {
  background: white;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.auth-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--base-text);
}

.auth-subtitle {
  font-size: 1rem;
  color: var(--medium-gray);
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Form Styles */
.auth-form {
  text-align: left;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--base-text);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-top: 4px;
  font-style: italic;
}

/* Checkbox Styling */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-checkbox {
  width: 16px;
  height: 16px;
  margin: 0;
}

.form-checkbox-label {
  font-size: 0.9rem;
  color: var(--base-text);
  margin: 0;
}

/* Button Styles */
.form-actions {
  margin-top: 32px;
  text-align: center;
}

/* Base button styles */
.btn {
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Form buttons (full width) */
.btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Form secondary button (full width) */
.btn-secondary {
  background: white;
  color: var(--base-text);
  border: 2px solid #e5e7eb;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
  margin-top: 8px;
}

/* Admin navigation button variants (inherit from .btn base) */
.btn.btn-primary {
  background: var(--primary-color);
  color: white;
  width: auto;
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn.btn-secondary {
  background: white;
  color: var(--base-text);
  border: 1px solid #e5e7eb;
  width: auto;
  padding: 8px 16px;
  font-size: 0.875rem;
  margin-top: 0;
}

.btn.btn-success {
  background: #16a34a;
  color: white;
  width: auto;
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn.btn-warning {
  background: #d97706;
  color: white;
  width: auto;
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn.btn-outline {
  background: white;
  color: var(--base-text);
  border: 1px solid #e5e5e5;
  width: auto;
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Hover states for admin navigation buttons */
.btn.btn-primary:hover {
  background: #1d4ed8;
}

.btn.btn-secondary:hover {
  background: var(--light-gray);
  border-color: var(--primary-color);
}

.btn.btn-success:hover {
  background: #15803d;
}

.btn.btn-warning:hover {
  background: #b45309;
}

.btn.btn-outline:hover {
  background: var(--light-gray);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  background: var(--light-gray);
}

/* Auth Links */
.auth-links {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.auth-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin: 4px 0;
  transition: color 0.2s ease;
}

.auth-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Error Messages */
.error-messages {
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.error-title {
  font-size: 1rem;
  font-weight: 600;
  color: #991b1b;
  margin-bottom: 8px;
}

.error-list {
  margin: 0;
  padding-left: 16px;
  color: #991b1b;
}

.error-list li {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .steps {
    flex-direction: column;
    gap: 50px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonial {
    font-size: 1.25rem;
  }

  .guarantee-card {
    padding: 32px 24px;
  }

  .container {
    padding: 0 16px;
  }

  /* Header Mobile Styles */
  .site-header {
    padding: 12px 0;
  }

  .logo-text {
    font-size: 1.125rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .header-nav {
    gap: 16px;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .nav-link-primary {
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  /* Auth Forms Mobile Styles */
  .auth-container {
    padding: 40px 0;
    min-height: calc(100vh - 120px);
  }

  .auth-card {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .auth-title {
    font-size: 1.75rem;
  }
}

/* Blog Styles */
.blog-index {
  padding: 2rem 0;
}

.blog-post-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: white;
}

.blog-post-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.post-title a {
  text-decoration: none;
  color: #333;
  font-size: 1.25rem;
  font-weight: 600;
}

.post-title a:hover {
  color: var(--primary-color);
}

.post-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.post-excerpt {
  color: var(--medium-gray);
  margin-top: 0.5rem;
}

.post-content {
  line-height: 1.6;
  margin-top: 2rem;
}

.post-content h1, .post-content h2, .post-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content pre {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
}

.post-content code {
  background: #f5f5f5;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-size: 0.9rem;
}

.post-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1rem;
  margin-left: 0;
  font-style: italic;
  color: var(--medium-gray);
}

.draft-indicator {
  background: #ffc107;
  color: #856404;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
}

.post-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}


.btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}

.btn-outline {
  background: white;
  color: var(--base-text);
  border: 1px solid #e5e5e5;
}

.btn-outline:hover {
  background: var(--light-gray);
}

.btn-danger {
  background: #dc2626;
  color: white;
}

.btn-danger:hover {
  background: #b91c1c;
}

.btn-success {
  background: #16a34a;
  color: white;
}

.btn-success:hover {
  background: #15803d;
}

.btn-warning {
  background: #d97706;
  color: white;
}

.btn-warning:hover {
  background: #b45309;
}

/* Admin Styles */
.admin-blog-index, .admin-blog-unpublished {
  padding: 2rem 0;
}

.admin-nav {
  margin-bottom: 2rem;
  padding-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.blog-nav {
  margin-bottom: .5rem;
  padding-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.admin-table th,
.admin-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}

.admin-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: var(--base-text);
}

.admin-table td a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.admin-table td a:hover {
  text-decoration: underline;
}

.status-published {
  background: #16a34a;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
}

.status-draft {
  background: #6b7280;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
}

.actions {
  display: flex;
  gap: 0.5rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}

.empty-state p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

/* Form styles for blog posts */
.blog-form, .admin-blog-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.markdown-editor {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9rem;
}

.form-help {
  display: block;
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-top: 0.25rem;
}

.alert {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.alert-error {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.alert-error h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.alert-error ul {
  margin: 0;
  padding-left: 1rem;
}

.alert-error li {
  margin-bottom: 0.25rem;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--base-text);
  margin-bottom: 2rem;
}

.admin-actions {
  margin-bottom: 2rem;
}

/* Early Access Form Styles */
.early-access {
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.early-access-content {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.early-access-content .page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.early-access-content .subtitle {
  font-size: 1.125rem;
  color: var(--medium-gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.early-access-form {
  margin-bottom: 2rem;
}

.early-access-form .form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.early-access-form .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--base-text);
}

.early-access-form .form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.early-access-form .form-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.early-access-form .btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  width: 100%;
}

.early-access-form .form-actions {
  text-align: center;
}

.success-message {
  background: #dcfce7;
  color: #166534;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  border: 1px solid #bbf7d0;
}

.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Project Brief Form Styles */
.project-brief-form-container {
  padding: 3rem 0;
  min-height: 80vh;
  background: var(--light-gray);
}

.project-brief-content {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 3rem;
}

.project-brief-content .page-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-align: center;
}

.project-brief-content .subtitle {
  font-size: 1.125rem;
  color: var(--medium-gray);
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 1.6;
}

.project-brief-form {
  margin-bottom: 1rem;
}

.project-brief-form .form-group {
  margin-bottom: 2rem;
}

.project-brief-form .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--base-text);
  font-size: 1rem;
}

.project-brief-form .form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  font-family: inherit;
  resize: vertical;
}

.project-brief-form .form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.project-brief-form .form-help {
  display: block;
  font-size: 0.875rem;
  color: var(--medium-gray);
  margin-top: 0.375rem;
  line-height: 1.4;
}

.project-brief-form .btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  width: 100%;
  margin-top: 1rem;
}

.project-brief-form .form-actions {
  text-align: center;
}

/* Responsive adjustments for project brief form */
@media (max-width: 768px) {
  .project-brief-form-container {
    padding: 2rem 0;
  }

  .project-brief-content {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }

  .project-brief-content .page-title {
    font-size: 1.875rem;
  }

  .project-brief-content .subtitle {
    font-size: 1rem;
  }
}

/* Admin Project Brief Styles */
.project-brief-details {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  overflow: hidden;
}

.brief-header {
  background: var(--light-gray);
  padding: 2rem;
  border-bottom: 1px solid #e5e5e5;
}

.brief-header .page-title {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.brief-meta {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.brief-content {
  padding: 2rem;
}

.brief-section {
  margin-bottom: 2rem;
}

.brief-section:last-child {
  margin-bottom: 0;
}

.brief-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--base-text);
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.25rem;
}

.content-box {
  background: #fafafa;
  padding: 1rem;
  border-radius: 6px;
  border-left: 4px solid var(--primary-color);
  line-height: 1.6;
  color: var(--base-text);
}

.brief-footer {
  background: var(--light-gray);
  padding: 1.5rem 2rem;
  border-top: 1px solid #e5e5e5;
}

.admin-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.5;
}

.badge {
  background: var(--primary-color);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: capitalize;
}

/* Responsive admin brief styles */
@media (max-width: 768px) {
  .project-brief-details {
    margin: 1rem;
  }

  .brief-header,
  .brief-content,
  .brief-footer {
    padding: 1.5rem;
  }

  .brief-header .page-title {
    font-size: 1.5rem;
  }
}

/* Footer Styles */
.site-footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  color: var(--medium-gray);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  flex: 1;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin: 0.25rem 0 0 0;
  line-height: 1.4;
}

.footer-copyright {
  margin-top: 1rem;
}

.footer-copyright p {
  font-size: 0.75rem;
  color: var(--medium-gray);
  margin: 0;
}

.footer-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: var(--base-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary-color);
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-center {
    justify-content: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

/* Admin Jobs */
.cursor-pointer {
    cursor: pointer;
}

.jobs-dashboard {
    .card {
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        border: 1px solid rgba(0, 0, 0, 0.125);
    }

    .table-responsive {
        border-radius: 0.375rem;
    }

    details {
        summary {
            list-style: none;

            &::-webkit-details-marker {
                display: none;
            }

            &:hover {
                text-decoration: underline;
            }
        }
    }

    pre {
        font-size: 0.75rem;
        max-height: 200px;
        overflow-y: auto;
    }
}

.job-details {
    .card {
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        border: 1px solid rgba(0, 0, 0, 0.125);
    }

    pre {
        font-size: 0.875rem;
        line-height: 1.4;
        max-height: 400px;
        overflow-y: auto;
    }

    .timeline-marker {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    dl.row {
        dt {
            font-weight: 600;
            color: #495057;
        }

        dd {
            margin-bottom: 0.5rem;
        }
    }
}

.alert {
    border: none;
    border-left: 4px solid;

    &.alert-danger {
        border-left-color: #dc3545;
    }

    &.alert-success {
        border-left-color: #28a745;
    }

    &.alert-warning {
        border-left-color: #ffc107;
    }

    &.alert-info {
        border-left-color: #17a2b8;
    }
}

/* Dropdown Navigation Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  min-width: 180px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 8px 16px;
  color: var(--base-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.dropdown-item:hover {
  background: var(--light-gray);
  color: var(--primary-color);
}

.dropdown-item .fas {
  margin-right: 8px;
}

.dropdown-item .badge {
  margin-left: 4px;
}

