/* frontend/css/documents.css */

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

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Унифицировано через .card */

.doc-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.doc-icon.pdf { background: #ef4444; }
.doc-icon.word { background: #2b579a; }
.doc-icon.txt { background: #6b7280; }

.doc-content h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.doc-meta {
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.action-btn {
    padding: 0.5rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: var(--bg-glass-hover);
    color: var(--error);
}