.arbor-table {

    thead {
        tr {
            th {
                background-color: var(--table-th-bg-color);
                border-bottom: none !important;
                padding: 15px 20px;
                font-size: 14px;
                color: var(--table-th-color);
                font-family: var(--font-medium);
                font-weight: normal;

                &:first-child {
                    border-top-left-radius: 3px;
                }

                &:last-child {
                    border-top-right-radius: 3px;
                }
            }


        }
    }

    tbody {
        &.no-records-table {
            height: 320px;
        }

        tr {
            td {
                font-size: 14px;
                color: var(--table-td-color);
                font-family: var(--font-regular);
                padding: 14px 20px;
                border-color: var(--table-border-color);
                border-bottom-width: 0.8px;
            }

            &:last-child {
                td {

                    &:first-child {
                        border-bottom-left-radius: 5px;
                    }

                    &:last-child {
                        border-bottom-right-radius: 5px;
                    }
                }
            }
        }
    }
}


.arbor-table-container {
    border-radius: 5px;
    box-shadow: 0 0 13px #f5f5f5;
}

.dashboard-table-container {
    th {
        position: sticky;
        top: 0px;
    }

    th,
    td {
        font-size: 14px !important;
    }
}

.dashboard-table-container.highRisk {
    height: 302px;
}

.dashboard-table-container.timePeriod {
    height: 506px;
}



.arbor-pagination {
    ul {
        li {
            a {
                border-radius: 50% !important;
                min-width: 32px;
                min-height: 32px;
                line-height: normal;
                color: var(--secondary-color);

                &.prev-first,
                &.prev {
                    transform: rotate(180deg);
                }

                &.active,
                &:hover {
                    background-color: var(--secondary-color);
                    color: #ffffff;

                    img {
                        filter: brightness(100);
                    }
                }

                &.disabled {
                    opacity: 0.4;
                    pointer-events: none;
                }

            }
        }
    }

}

.arbor-search {
    border: 0.5px solid var(--input-border-color);
    border-radius: 5px;

    input {
        padding: 10px;
    }
}


.grid-select {
    border: 0.5px solid var(--input-border-color);
    border-radius: 5px;
    padding: 8px 16px;
    width: 160px;
}

.arbor-filter-dropdown {
    width: 460px;
    padding: 24px 22px;
    border-radius: 8px;
    box-shadow: 0px 0px 16px 0px #00000014;
     min-width: 300px;
  max-width: 400px;
   right: 0;
  left: auto;
}

.search-icon-position {
    top: 6px;
    right: 0px;
}

.arbor-filter-btn {
    border-radius: 5px;
    border: 0.8px solid var(--input-border-color);
    width: 40px;
    height: 40px;

    &:hover {
        background-color: var(--global-nav-border-hover-color);
    }

    &:focus {
        background-color: var(--global-nav-border-hover-color);
        box-shadow: none;
        border: 0.8px solid var(--input-border-color);
    }

}

.sort-up-position {
    top: 3px;
    left: 8px;
}

.sort-down-position {
    bottom: 3px;
    left: 8px;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.in-progress-status {
    background-color: var(--in-progress-color);
}

.completed-status {
    background-color: var(--completed-color);
}

button.action-btn,
button.action-btn {
    border: 0;
    outline: 0;
}