.information-icon {
    width: 20px;
    height: auto;
}

/* progress_bar.php */
.progress-bar {
    width: 10rem;
    background: var(--color-text);
    border-radius: 1rem;
}

.progress-bar > span {
    color: white;
    border-radius: 1rem;
    padding: 0.3rem var(--spacing-xs);
    background: var(--color-primary);
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
    display: inline-block;
    font-size: var(--font-s);
}

/* standart_pagination.php */
ul#page-menu {
    background: white;
    display: table;
    padding: 0;
    margin: 0 auto;
    border-radius: 0.3em;
    border: 1px solid #999;
    box-shadow: 0 2px 5px rgb(0 0 0 / 15%);
}

ul#page-menu li {
    float: left;
    list-style: none;
    padding: 0.5em 1.5em;
    margin: 0.2em 0;
    border-right: 1px solid #aaa;
}

ul#page-menu li:first-child {
    margin: 0.2em 0 0.2em 0.2em;
}

ul#page-menu li:last-child {
    border-right: 0;
    margin: 0.2em 0.2em 0.2em 0;
}

ul#page-menu li p {
    margin: 0;
    padding: 0;
}

ul#page-menu li:hover,
ul#page-menu li.selected {
    background: #e5e5e5;
}

/* standart_table.php */
.nice-table {
    text-align: left;
    border-collapse: collapse;
}

.nice-table thead {
    border-bottom: 1px solid var(--color-text);
    vertical-align: top;
}

.nice-table td,
.nice-table th {
    padding: var(--spacing-xs);
}

.nice-table tbody tr:nth-child(2n) {
    background-color: var(--color-light);
}

/* paginator */
.nice-table .paginator {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: end;
}

#filter-table-paginator {
    flex-direction: column;
    align-items: flex-start;
}

.row-min {
    width: 1rem;
}

.row-10 {
    width: 10%;
}

.row-20 {
    width: 20%;
}

.row-30 {
    width: 30%;
}

.row-40 {
    width: 40%;
}

.row-50 {
    width: 50%;
}

/* filter table */
.sort {
    display: inline-block !important;
    padding: 0;
    margin: 0;
}

.filter-column-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 1px;
    align-items: start;
}

.filter-select {
    width: 1rem;
    height: 1rem;
    position: relative;
    display: inline-block;
}

.filter-select select {
    cursor: pointer;
    width: 100%;
    opacity: 0;
    overflow: hidden;
    z-index: -1000;
    background: white;
}

.filter-select::after {
    font-family: var(--font-family-icons);
    content: "\eaa5";
    /* ti-filter */
    position: absolute;
    right: 1px;
    pointer-events: none;
}

.filter-select:has(option[value=""]:not(:checked))::after {
    content: "\fc27";
    /*ti-filter-filled*/
}

.filter-date > input {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    overflow: hidden;
    z-index: -1000;
}

.filter-search {
    display: flex;
    flex-wrap: nowrap;
    min-width: 20rem;
    gap: var(--spacing-xs);
}

.filter-search input {
    flex: 1;
}

/* need to override header ti that sets it like a button */
.filter-search .ti {
    padding: 0 !important;
    background: inherit !important;
}

.filter-select-table {
    appearance: none;
    outline: 0;
    padding: 0 var(--spacing-s);
}

.table-group-even {
    background-color: #0000000a;
}
.table-header-buttons:empty {
    display: none;
}
