 /* my custom grid css */
 .cs-grid-wrapper {
    width: fit-content;
    font-size: var(--font-size-tablegrid);
}

.cs-grid-small-td-font {
    font-size:var(--font-size-small);
}
.cs-grid {
    border-collapse: separate;
    border-spacing: 0;
    max-width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}
.cs-grid th, .cs-grid td {
    border: 1px solid #e0e0e0;
    padding: 5px 6px;
    text-align: left;
}
.cs-grid td a {
    cursor: pointer;
}
.cs-grid th {
    background-color: #f9f9f9;
    cursor: pointer;
    position: relative;
}
.cs-grid th .sort-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0px;
    top: 35%;
    transform: translateY(-50%);
    color: #888888;
}
.cs-grid tr:nth-child(even) {
    background-color: #f9f9f9;
}
.pagination {
    margin-top: 10px;
    justify-content: end;
    gap:8px;
}
.pagination button {
    cursor: pointer;
    background-color: #aaaaaa;
    color: white;
    border: none;
    padding: 8px 16px;
    text-decoration: none;
    margin: 0 2px;
    border-radius: 5px;
}
.pagination button.active {
    background-color: #777777;
}
.filter-input {
    margin-bottom: 10px;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

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

.csgrid-action-bar {
    padding: 12px;
    min-height: 30px;
    border-radius: 10px;
   
    background-color: rgb(233 233 212 / 47%);

}

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

}

.filter-container {
    display: flex;
    justify-content: space-between; /* Esto alineará el filtro a la izquierda y el conteo de filas a la derecha */
    align-items: center; /* Alinea verticalmente los elementos */
    gap:5px;
}

.filter-input {
    flex: 1; /* Permite que el campo de filtro ocupe el espacio disponible */
    margin-right: 10px; /* Espacio entre el campo de filtro y el conteo de filas */
}

.row-count {
    white-space: nowrap; /* Evita que el conteo de filas se envuelva a la línea siguiente */
}