/* 
 * Badisches Wörterbuch - Main Stylesheet
 * A comprehensive stylesheet for the online dictionary application
 */

/* Basic layout and typography */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.5;
  }
  
  h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
  }
  
  .card {
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
  }
  
  .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 0.75rem 1rem;
  }
  
  .card-header h5 {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 600;
  }
  
  /* Navigation */
  .navbar {
    border-bottom: 1px solid #dee2e6;
    background-color: #fff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  
  .navbar-brand {
    font-weight: 600;
    color: #212529;
  }
  
  /* Alphabet navigation */
  #alphabetNav {
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
    overflow: hidden;
  }
  
  #alphabetNav .btn-group {
    width: 100%;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 0.25rem;
  }
  
  #alphabetNav a {
    flex: 0 0 auto;
    text-align: center;
    width: 2rem;
    font-weight: 500;
    text-decoration: none;
  }
  
  #alphabetNav a.active {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
  }
  
  /* Status information */
  #statusInfo {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
  }
  
  /* Dictionary entry styling */
  .dictionary-entry {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    line-height: 1.6;
  }
  
  .dictionary-entry:last-child {
    border-bottom: none;
  }
  
  .headword {
    font-weight: 700;
    font-size: 1.25rem;
    color: #212529;
    margin-right: 0.25rem;
  }
  
  .definition {
    font-weight: 500;
    color: #212529;
  }
  
  .source {
    font-weight: 500;
    color: #495057;
    letter-spacing: 0.01em;
  }
  
  .example {
    font-style: italic;
    color: #495057;
    display: inline;
  }
  
  .reference {
    font-size: 0.9rem;
    color: #6c757d;
  }
  
  .cross-reference {
    color: #0d6efd;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 500;
  }
  
  .cross-reference:hover {
    color: #0a58ca;
  }
  
  .grotesk {
    font-family: monospace;
    background-color: #f8f9fa;
    padding: 0 3px;
    border-radius: 2px;
  }
  
  /* Search highlight */
  .highlight {
    background-color: #fff3cd;
    padding: 0 2px;
    border-radius: 2px;
  }
  
  /* Recently viewed entries */
  #recentlyViewed .list-group-item {
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    padding: 0.75rem 1rem;
  }
  
  #recentlyViewed .list-group-item:hover {
    background-color: #f8f9fa;
  }
  
  /* Pagination */
  .pagination-container {
    margin-top: 2rem;
  }
  
  .pagination .page-link {
    color: #0d6efd;
    background-color: #fff;
    border: 1px solid #dee2e6;
  }
  
  .pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
  }
  
  .pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
  }
  
  /* Advanced search form */
  .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  /* Word class and grammatical information */
  .word-class {
    font-style: italic;
    color: #495057;
    margin-right: 0.5rem;
  }
  
  /* Horizontal rules and separators */
  hr {
    margin: 1.5rem 0;
    color: #dee2e6;
  }
  
  /* Footer styling */
  footer {
    background-color: #f8f9fa !important;
    border-top: 1px solid #dee2e6;
    color: #6c757d;
    font-size: 0.9rem;
  }
  
  footer a {
    color: #495057;
  }
  
  footer a:hover {
    color: #212529;
  }
  
  /* Custom styles for semantic elements */
  .word-meaning {
    display: block;
    margin: 0.5rem 0;
  }
  
  .etymology {
    font-size: 0.95rem;
    color: #495057;
  }
  
  /* Print styles */
  @media print {
    .navbar, .col-md-3, #alphabetNav, footer, .pagination-container {
      display: none !important;
    }
    
    .container {
      max-width: 100%;
      padding: 0;
      margin: 0;
    }
    
    .col-md-9 {
      width: 100%;
      max-width: 100%;
      flex: 0 0 100%;
    }
    
    .dictionary-entry {
      page-break-inside: avoid;
      border-bottom: 1px solid #000;
    }
    
    #statusInfo {
      display: none;
    }
    
    body {
      font-size: 12pt;
      line-height: 1.5;
    }
    
    .headword {
      font-size: 14pt;
    }
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .container {
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    #alphabetNav a {
      width: 1.8rem;
      font-size: 0.85rem;
      padding: 0.25rem 0;
    }
    
    .headword {
      font-size: 1.15rem;
    }
    
    h1 {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    #alphabetNav a {
      width: 1.5rem;
      font-size: 0.8rem;
      padding: 0.2rem 0;
    }
    
    .headword {
      font-size: 1.1rem;
      display: block;
      margin-bottom: 0.25rem;
    }
    
    .dictionary-entry {
      font-size: 0.95rem;
    }
  }