/* Стили для списка документов */
.document-list {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .document-list h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
  
  .document-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
  
  .document-item:last-child {
    border-bottom: none;
  }
  
  .document-list .document-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    transition: background-color 0.2s;
    border-radius: 8px;
    padding: 10px;
    border-bottom: none;
  }

  .document-list .document-link:hover {
    border-bottom: none;
  }
  
  .document-link:hover {
    background-color: var(--c-color);
  }
  
  .icon {
    width: 40px;
    height: 40px;
    background-color: var(--blue-base);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
  }
  
  .title {
    flex-grow: 1;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
  }
  
  .size {
    font-size: 0.9rem;
    color: #666;
    margin-right: 15px;
  }
  
  .action {
    font-size: 0.9rem;
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
    min-width: 60px;
    text-align: right;
  }
  
  /* Адаптивность */
  @media (max-width: 800px) {
    .document-list {
      padding: 10px;
    }
    
    .document-link {
      flex-wrap: wrap;
      padding: 15px 10px;
    }
    
    .title {
      flex-basis: 100%;
      margin-bottom: 10px;
      margin-right: 0;
    }
    
    .size {
      margin-right: 10px;
    }
  }