/* Zoom icon styles */
.zoom-icon {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0;
    color: var(--text-secondary);
}

/* Change from row hover to cell hover */
.tabulator-cell:hover .zoom-icon {
    opacity: 1;
}

.zoom-icon:hover {
    transform: scale(1.2);
}

.zoom-icon.hidden {
    display: none;
}

/* Cell container styles */
.cell-container {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.original-formatter {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 5px;
    color: var(--text-primary);
}
