.icon-cell-container {
    height: 100%; /* Ensure container takes full cell height */
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
}

/* For the ag-Grid cell itself (optional, but good for overall alignment) */
.ag-cell-centered {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
}
.custom-tooltip {
    border-radius: 2px;
    border-style: solid;
    border-color: #cbd0d3;
    transition: opacity 1s;
    max-width:200px;
}
