.download-category {
    margin-bottom: 2rem;
}

.download-category-title {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #dee2e6;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border: 1px solid #dfe3e8;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
}

.download-item-title {
    font-weight: 600;
    color: var(--color-text);
}

.download-item-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.download-item-date {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.25rem;
}

.download-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.download-empty-state {
    text-align: center;
    padding: 3rem;
    color: #7f8b95;
    border: 1px dashed #cfd6dd;
    border-radius: var(--radius-md);
    background: #f9fbfd;
}