.tabulator .tabulator-row.tabulator-row-even {
    background-color: var(--darker-background) !important;
}

.tabulator .tabulator-row.tabulator-row-odd {
    background-color: var(--main-background) !important;
}

.tabulator .tabulator-cell {
    border: 0px !important;
}

.tabulator .tabulator-col {
    border: 0px !important;
}

.tabulator {
    width: 100%;
    font-size: 16px !important;
}

.ai-thinking {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.ai-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
    animation: ai-bounce 1s infinite ease-in-out;
}

.ai-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.ai-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes ai-bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    40% {
        transform: translateY(-5px);
        opacity: 1;
    }
}