
.filter-card {
    @apply bg-white p-3 rounded-lg border border-gray-200;
}

.table-header {
    @apply py-3 px-4 text-left text-sm font-semibold;
}

.table-cell {
    @apply py-3 px-4 text-sm;
}

select {
    @apply bg-white border border-gray-300 rounded-md shadow-sm focus:border-blue-500 focus:ring-blue-500;
}

.bg-blue-50 {
    background-color: #eff6ff;
}
@media print {
    body {
        background: none;
    }
    .page {
        margin: 0;
        box-shadow: none;
    }
    .filter-card {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
}