/* Atlas Intelligence — Custom CSS (supplements Tailwind CDN) */

/* Smooth transitions */
a, button {
    transition: all 0.15s ease-in-out;
}

/* Line clamp utility (for truncating text) */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

/* Custom scrollbar for tables */
.overflow-x-auto::-webkit-scrollbar {
    height: 6px;
}

.overflow-x-auto::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.overflow-x-auto::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 3px;
}
