.page_list_of_quarries{
    padding: 0px 10px;


}

.container_for_content{

}


.page_list_of_quarries .container_with_filters{
    width: 100%;
    padding: 20px;
    background-color: #CFD3BB;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 100;
}

.page_list_of_quarries .container_with_filters .row_1 .title{
    padding-top: 15px;
    font-size: 16px;
    font-weight: 500;
}

.page_list_of_quarries .container_with_filters .row_2{
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.page_list_of_quarries .container_with_filters .row_2 .item_row_2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.page_list_of_quarries .container_with_filters .row_2 .container_for_region,
.page_list_of_quarries .container_with_filters .row_2 .container_for_search{
    padding-right: 10px;
}

/* Style for select and input */
.page_list_of_quarries .container_with_filters .row_2 .item_row_2  select,
.page_list_of_quarries .container_with_filters .row_2 .item_row_2  input{
    width: 100%;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
    background-color: white;
    color: rgba(0, 0, 0, 0.6);
    height: 35px;
    font-weight: 100;
}

.page_list_of_quarries .container_with_filters .row_2 button{
    width: 100%;
    height: 35px;
    border: none;
    border-radius: 5px;
    background-color: #646B41;
    color: white;
    font-size: 16px;
    font-weight: 100;
    cursor: pointer;
}





.page_list_of_quarries .container_for_table{
    padding-top: 20px;
}


.page_list_of_quarries .table{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.page_list_of_quarries table {
    text-align: left;
    font-size: 14px;
    border-spacing: 1px;
    border-collapse: collapse; 
    border-radius: 10px 10px 0 0; 
    width: 100%;
    table-layout: fixed;
    /* overflow: hidden;  */
}

.page_list_of_quarries table th, .page_list_of_quarries table td{
    padding: 15px 15px;
    border: 1px solid #D8DACF;
}

.page_list_of_quarries table thead th{
    position: sticky;
    top: 0;
    z-index: 999;

    padding: 15px 15px;
    background-color: #646B41;
    color: white;
    font-size: 12px;
    font-weight: 100;
    vertical-align: middle;
}

.page_list_of_quarries table thead th.field_quarry{
    border-top-left-radius: 10px;
    border: none;
    width: 15%;
}

.page_list_of_quarries table thead th.field_legal_entity{
    width: 20%;
}

.page_list_of_quarries table thead th.field_region{
    width: 15%;
}

.page_list_of_quarries table thead th.field_address{
    width: 25%;
}

.page_list_of_quarries table thead th.field_work_hours{
    width: 15%;
}

.page_list_of_quarries table thead th.field_contacts{
    width: 10%;
}

@media screen and (max-width: 991px) {
    .page_list_of_quarries table thead th.field_work_hours {
        border-top-right-radius: 10px;
        border: none;
    }
}

@media screen and (min-width: 992px) {
    .page_list_of_quarries table thead th.field_contacts {
        border-top-right-radius: 10px;
        border: none;
    }
}   


.page_list_of_quarries table tbody tr a{
    text-decoration: none;
    color: black;
}

.page_list_of_quarries table tbody tr td{
    background-color: #F9F9F9;
}

.page_list_of_quarries table tbody tr td.field_legal_entity {
    text-align: right;
}

@media screen and (min-width: 992px) {
    .page_list_of_quarries table tbody tr td.field_work_hours {
        min-width: 110px;
    }
}   

.page_list_of_quarries table tbody tr:hover td{
    /* background-color: #D8DACF; */
    background-color: #E7E7E7;
}

/* Pagination Styles */
.pagination-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.pagination-info {
    font-size: 14px;
    color: #666;
    font-weight: 100;
}

.pagination {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.page-link {
    display: inline-block;
    padding: 8px 12px;
    text-decoration: none;
    color: #646B41;
    background-color: #F9F9F9;
    border: 1px solid #D8DACF;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 100;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: #E7E7E7;
    color: #646B41;
    text-decoration: none;
}

.page-link.current {
    background-color: #646B41;
    color: white;
    border-color: #646B41;
    font-weight: 500;
}

.page-link.current:hover {
    background-color: #646B41;
    color: white;
}

@media screen and (max-width: 768px) {
    .pagination-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .pagination {
        justify-content: center;
    }
    
    .page-link {
        padding: 6px 10px;
        font-size: 12px;
    }
}

