.document-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 950px;
    margin: 0 auto;
    border-radius: 8px;
  }
  
  .document-group {
    margin-bottom: 35px;
    padding: 20px;
    border-radius: 6px;
  }
  
  .group-title {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
  }
  
  .document-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .document-item {
    margin-bottom: 15px;
    padding: 12px 18px;
    background-color: #f8f9fa85;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .document-item:hover {
    background-color: #e9f5feab;
  }
  
  .document-link {
    color: #2980b9;
    text-decoration: none;
    flex-grow: 1;
  }
  
  .document-link:hover {
    color: #1a5276;
  }
  
  .document-meta {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .document-date {
    background-color: #3498db;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    min-width: 70px;
    text-align: center;
  }
  
  .document-format {
    background-color: #e74c3c;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
  }
  
  .divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #3498db, transparent);
    margin: 30px 0;
  }