@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom styles can be added here */
@layer components {
    .filter-section {
        transition: all 0.3s ease;
    }

    .document-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .document-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .loading-spinner {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid #f3f3f3;
        border-top: 3px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .pdf-page {
        margin: 10px auto;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
    }
}