/* my custom grid css */
#ux-app .cs-grid-wrapper,#ux-app .cs-grid-wrapper a  {
    width: initial;
    font-size: var(--font-size-tablegrid) !important;
}


#ux-app .cs-grid-small-td-font {
    font-size: var(--font-size-small);
}

#ux-app .cs-grid {
    border-collapse: separate;
    border-spacing: 0;
    max-width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

#ux-app .cs-grid th,
#ux-app .cs-grid td {
    border: 0.5px solid #d0d0d0;
    padding: 5px 6px;
    text-align: left;
}

#ux-app .cs-grid td a {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style:solid;
}

#ux-app .cs-grid td a:hover {
    cursor: pointer;
    text-decoration-style:dotted;
}

#ux-app .cs-grid th {
    background-color: #f9f9f9;
    cursor: pointer;
    position: relative;
}

#ux-app .cs-grid th .sort-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0px;
    top: 35%;
    transform: translateY(-50%);
    color: #888888;
}

#ux-app .cs-grid tr:nth-child(even) {
    background-color: #f9f9f9
}

#ux-app .cs-grid tr:nth-child(odd) {
    background-color: #fff;
}
#ux-app .pagination {
    margin-top: 10px;
    justify-content: end;
    gap: 8px;
}

#ux-app .pagination button {
    cursor: pointer;
    background-color: #aaaaaa;
    color: white;
    border: none;
    padding: 8px 16px;
    text-decoration: none;
    margin: 0 2px;
    border-radius: 5px;
}

#ux-app .pagination button.active {
    background-color: #777777;
}

#ux-app .filter-input {
    margin-bottom: 10px;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#ux-app .filter-select {
    margin-bottom: 10px;
    padding: 8px;
    box-sizing: border-box;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

#ux-app .csgrid-action-bar {
    padding: 12px;
    min-height: 30px;
    border-radius: 10px;
    background-color: rgb(245 241 238);
    border: 1px solid #44362f1c;
    margin: 5px 0;
}

#ux-app .cs-grid-title {
    color: rgba(0, 0, 0, 1);
    font-weight: bold;
}

#ux-app .filter-container {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    gap: 5px;
}

#ux-app .filter-input {
    flex: 1; 
    margin-right: 10px; 
}

#ux-app .row-count {
    white-space: nowrap; 
}
