/* Consulting app custom styles - minimal, Tailwind handles most */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Message list auto-scroll */
#message-list {
    scroll-behavior: smooth;
}

/* Status badge transitions */
.status-badge {
    transition: all 0.2s ease;
}

/* Table row hover */
.table-row-hover:hover {
    background-color: rgba(30, 41, 59, 0.5);
}

/* Progress bar animation */
.progress-bar {
    transition: width 0.5s ease-in-out;
}

/* Modal backdrop */
.modal-backdrop {
    backdrop-filter: blur(4px);
}
