/* Custom styles for the document search app */

/* Smooth transitions for interactive elements */
.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);
}

/* Custom scrollbar for better UX */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Loading states for HTMX */
.htmx-request {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus states for accessibility */
input:focus,
button:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}