/* JSP Media Dashboard — Custom CSS */

/* Smooth scrollbar */
html { scroll-behavior: smooth; }

/* Line clamp utility for older browsers */
.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Table improvements */
table { border-collapse: separate; border-spacing: 0; }

/* Chart containers */
canvas { max-width: 100%; }

/* Timeline connector fix */
.timeline-line { position: absolute; left: -19px; top: 20px; bottom: 0; width: 1px; background: #e5e7eb; }

/* Mobile table scroll hint */
@media (max-width: 768px) {
    .overflow-x-auto { -webkit-overflow-scrolling: touch; }
}

/* Smooth badge transitions */
span[class*="rounded-full"] { transition: background-color 0.15s ease; }
