/* Main content for the Documents page - Theme Aware Colors */
.documents-page {
    padding: 2rem;
  }
  
  .documents-list h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
  }
  
  .description {
    font-size: 1rem;
    color: var(--subtext-color);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  /* Document Item */
  .document-item {
    background-color: var(--header-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px var(--shadow);
    margin-bottom: 1.5rem;
  }
  
  .document-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
  }
  
  .short-description {
    font-size: 1rem;
    color: var(--subtext-color);
    margin-bottom: 1rem;
  }
  
  /* Leave button styling as originally defined */
  .btn-primary {
    display: inline-block;
    background-color: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #2563eb;
  }
  