/* Custom styles */

/* Form focus states */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Smooth transitions */
button, input, select, textarea {
    transition: all 0.2s ease-in-out;
}

/* Table hover */
table tbody tr:hover {
    background-color: #f9fafb;
}

/* Modal animation */
#previewModal {
    transition: opacity 0.3s ease;
}

#previewModal.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Print styles for preview */
@media print {
    #previewContent {
        background: white !important;
        padding: 0 !important;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

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