.dt-files-container {
    max-width: 100%;
    margin: 20px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.dt-files-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dt-file-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f0f0f0;
}

.dt-file-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dt-file-icon {
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-icon-badge {
    background: #4f46e5;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    min-width: 45px;
    text-align: center;
}

.dt-file-info {
    flex-grow: 1;
}

.dt-file-title {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #1f2937;
    font-weight: 600;
}

.dt-file-meta {
    font-size: 13px;
    color: #6b7280;
}

.dt-file-actions {
    margin-left: 20px;
}

.dt-download-btn {
    display: inline-block;
    background: #f3f4f6;
    color: #4b5563;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.dt-download-btn:hover {
    background: #4f46e5;
    color: #ffffff;
    text-decoration: none;
}

.dt-files-empty {
    text-align: center;
    color: #9ca3af;
    padding: 40px;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px dashed #e5e7eb;
}
