.container_box{
    position: relative;
}
.navigation_section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 2rem ;
    font-size: 1.2rem;
}
.navigation_section span {
    margin-right: 1.2rem;
}
.navigation_section span:nth-child(2) {
    color: var(--text-color-gray);
}

.navigation_section .nav span:nth-child(1) {
    height: 1.5rem;
    width: 1.5rem;
    border: 1px solid var(--text-color-gray);
    padding: 1.2rem;
    border-radius: 50%;
}


.table_container{
    padding: 2rem;
    width: 100%;
    overflow-x: auto;
}



table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}
th, td {
    /*border: 1px solid var(--text-color-gray);*/
    padding: 2rem;
}
th {
    background-color: var(--text-color);
    text-align: left;
}
tr:nth-child(even) {
    /*background-color: #f9f9f9;*/
}
tr:hover {
    background-color:var(--text-color);
}

tr .delete_btn , tr .edit_btn{
    font-size: 1.8rem;
    cursor: pointer;
    margin-right: 1.4rem;
}
.reviews_btn_publish{
    font-size: 2rem;
    cursor: pointer;
    margin-right: 1.4rem;
    color:#009B07;
}

.reviews_btn_unpublish{
    font-size: 2rem;
    cursor: pointer;
    margin-right: 1.4rem;
    color:#D63321;
}
tr .delete_btn{
    margin-right: 1.4rem;
    color: var(--text-color-red);
}


tr .updates{
    color: var(--bg-active);
    font-weight: 500;
    border-bottom: 1px solid var(--bg-active);
}
.pagination_container{
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    align-items: center;
}

.pagination_container a , .paginate_button{
    background: var(--text-color);
    color: var(--text-color-black);
    border: 1px solid var(--text-color-grey-100);
    padding: 1rem;
    margin-right: 1rem;
    border-radius: 1rem;
}

.pagination_container a:hover{
    background: var(--bg-active);
    color: var(--text-color);
    border: 1px solid var(--bg-active);

}
.pagination_container  button:hover{
    background: var(--bg-active);
    color: var(--text-color);
    border: 1px solid var(--bg-active);
}


