/* Tailwind handles most styling via CDN. Minimal custom overrides below. */

/* Smooth transitions on all interactive elements */
a, button, input, select {
    transition: all 0.15s ease;
}

/* Table row striping for readability */
tbody tr:nth-child(even) {
    background-color: rgba(249, 250, 251, 0.5);
}

/* Clamp long text in table cells */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
