﻿/**
 * [Summary]:
 * Intended for any styling that's related to the Kendo UI library.
 * If there's a need to extend something, change some colors and so on,
 * try to put these changes right here.
**/

.k-grid {
    height: calc(100vh - 120px);
}

.k-grid .k-table .k-table-td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-grid .k-table-td.auto-fit {
    white-space: nowrap;
    width: 1%;
}

.theme-multiline-tabstrip .k-tabstrip-items {
    flex-wrap: wrap;
    display: flex;
}

    .theme-multiline-tabstrip .k-tabstrip-items > li {
        flex: 0 1 auto;
    }

/*
 * #25998 To address an issue in Kendo 2025.1.227
 * https://github.com/telerik/kendo-ui-core/issues/8140
 */
.k-menu-popup:has(.k-datepicker) {
    overflow: visible !important;
}
