.errorlist {
    list-style: none;
    padding: 0;
}
.errorlist li {
    color: #842029;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
}

.tooltip-cell {
    position: relative;
    cursor: pointer; /* Indicates interactivity */
}

.tooltip-cell::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0; /* Adjust size of the triangle */
    border-color: transparent #007bff transparent transparent; /* Adjust color to match your theme */
    pointer-events: none; /* Prevent the triangle from interfering with hover */
}