/* Custom scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(156, 163, 175, 0.3);
    border-radius: 9999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: rgba(156, 163, 175, 0.5);
}

/* Chat bubbles */
.chat-bubble-user {
    border-bottom-right-radius: 4px;
}
.chat-bubble-agent {
    border-bottom-left-radius: 4px;
}

/* HTMX transitions */
.htmx-swapping {
    opacity: 0;
    transition: opacity 150ms ease-out;
}
.htmx-settling {
    opacity: 1;
    transition: opacity 150ms ease-in;
}

/* Pipeline card active state */
button:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

/* Table row borders for stock alerts */
tr.border-l-4 td:first-child {
    padding-left: calc(1.25rem - 4px);
}
