button,
input,
optgroup,
select,
textarea {
    color: black;
}

#chart-container {
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.chart-item {
    position: absolute;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.diverging-bar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    border-radius: 0.375rem;
    transition: width 0.6s ease, background-color 0.3s ease;
}
.bar-up {
    left: 50%;
    background-color: #2563eb; /* bg-blue-600 */
}
.bar-down {
    right: 50%;
    background-color: #dc2626; /* bg-red-600 */
}
.center-axis {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #4b5563; /* bg-gray-600 */
}
.item-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    color: #d1d5db;
    white-space: nowrap;
    padding: 0 0.5rem;
    text-decoration: none;
}

.datatable-input {
    padding: 6px 12px;
    color: blue;
}

.datatable-selector {
    padding: 6px;
    color: blue;
}
