.filtered-column {
    background-color: #dcdcdc !important;
    /* Light gray background */
    border-color: #dcdcdc !important;
    /* Blue border to highlight */
    font-weight: bold !important;
}

.kendo-grid-heading {
    font-weight: bold;
    align-self: end;
    padding: 5px;
    margin-top: 8px;
}

.kendo-grid-cell {
    border: 1px solid #ccc;
    padding: 8px;
}

.kendo-grid-row:nth-child(even) .kendo-grid-cell {
    background-color: #f9f9f9;
    /* Light grey for even rows */
}

.kendo-grid-row:nth-child(odd) .kendo-grid-cell {
    background-color: #ffffff;
    /* White for odd rows */
}

li {
    list-style-type: none;
    /* Removes the default marker (bullet) */
    padding-left: 0;
    /* Optionally adjust the left padding to prevent indentation */
}

.k-menu-popup:has(.custom-context-menu) {
    overflow: visible !important;
}
.custom-context-menu .k-popup {
    overflow: visible !important;
    /* Make sure the popup does not clip the content */
    max-height: none !important;
    /* Ensure no maximum height on the context menu */
    position: absolute !important;
    /* Make sure it appears in the right place */
    z-index: 9999 !important;
    /* Ensure it's above other elements */
}

.locked-column {
    background-color: #f7cccc !important;
}