Hood-CS's picture
You are an expert in image and PDF manipulation,
0853b0a verified
raw
history blame contribute delete
486 Bytes
/* Custom styles that can't be done with Tailwind */
#pdf-input:hover + label {
border-color: #818cf8;
}
#process-btn:disabled {
background-color: #cbd5e1;
cursor: not-allowed;
}
#download-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/* Animation for processing */
@keyframes spin {
to { transform: rotate(360deg); }
}
.animate-spin {
animation: spin 1s linear infinite;
}