/* ===== DOCUMENTS ===== */
.doc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doc-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.doc-item:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(21,127,196,0.08);
}

.doc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-icon.pdf { background: #fef2f2; color: #ef4444; }
.doc-icon.doc { background: #eff6ff; color: #3b82f6; }
.doc-icon.xls { background: #f0fdf4; color: #22c55e; }

.doc-icon svg { width: 22px; height: 22px; }

.doc-info { flex: 1; min-width: 0; }

.doc-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.doc-meta {
    font-size: 12px;
    color: var(--text-tertiary);
    display: flex;
    gap: 16px;
}

.doc-download {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    flex-shrink: 0;
}

.doc-download:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.doc-download svg { width: 18px; height: 18px; }