/* Add smooth transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Enhance loader animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s ease-in-out infinite;
}

/* Enhance table styles */
#output-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 0.5rem;
}

#output-table th,
#output-table td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    text-align: left;
    transition: background-color 0.15s ease-in-out;
}

#output-table th {
    background-color: #f8fafc;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

#output-table tr:hover td {
    background-color: #f8fafc;
}

#output-table tr:nth-child(even) {
    background-color: #f9fafb;
}

#output-table td:first-child {
    font-weight: 600;
    width: 30%;
    background-color: #f8fafc;
}
