﻿.review-page__container {
    min-height: 100vh;
}
/*.nav-container{
    position: sticky !important;
    top: 0;
}*/
.review-page__container {
    min-height: 100vh;
    padding-top: 200px;
    margin-bottom: 180px;
}

.review-page__content{
    width: 95%;
    margin: 0 auto;
}

.review__heading {
    margin: 0 auto 60px;
    text-align: center;
}

    .review__heading h1 {
        font-size: 54px;
        font-weight: 400;
        line-height: 40px;
    }



.review__items {
    /*    display: flex;
    flex-wrap: wrap;
    gap: 40px;*/
    /*content: "";
    clear: both;
    display: table;*/
    display: block;
    min-height: 60vh;
}


.review__item h1 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #0000004d;
}

.review__item p {
    word-wrap: break-word;
    overflow-wrap: break-word; 
    white-space: normal;
    font-size: 14px;
    font-weight: 100;
}

.review__item {
    padding: 20px;
    margin-bottom: 16px;
    margin-right: 16px;
    background-color: white;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    width: calc(33.333% - 16px); /* Instead of 100% / 3, you can directly use percentage-based widths */
}

.review-search__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

@media(max-width: 650px) {
    .review-search__box {
        flex-direction: column;
    }

    #review_page-size-select{
        margin-top:10px;
    }

/*    .review_page-size-select-container{
        display: flex;
        flex-direction: column
    }*/

/*    .review_page-size-select-container select{
        width: 100%;
        max-width: 150px;
        padding: 5px 10px;
    }*/

}

.review__search-container input {
    max-width: 500px;
    width: 100%;
    height: 50px;
    font-size: 16px;
    padding: 16px;
    border-radius: 4px;
    outline: none;
    border: 1px solid #a1a1a1;
}

.review__search-container .search-btn {
    height: 50px;
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: #fde100;
    padding: 0 20px;
    cursor: pointer;
    font-size: 16px;
    color: black;
}

.review__search-container {
    width: 100%;
    display: flex;
    gap: 8px;
    justify-content: center;
}

@media(max-width: 1000px) {
    .review__item {
        width: calc(50% - 16px); /* Adjust for smaller screens */
    }
}

@media(max-width: 650px) {
    .review__item {
        width: calc(100% ); /* Adjust for smaller screens */
    }
}

.paginationContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -80px;
    width: 100%;
    margin-top: 20px;
}

.pagination{
    display:flex;
    justify-content:center;
    gap:4px;
    width: 100%;
/*    margin-top: 40px;*/
/*    margin-bottom: 16px;*/
}

.paginationItem{
    cursor:pointer;
    transition:all 0.3s ease-in-out;
    border:1px solid transparent;
    padding: 2px 4px;
    font-weight: 300;
}

    .paginationItem.pagination-border{
        width: 30px;
        height: 30px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .paginationItem:has(.pagination-border) {
        border: 1px solid black;
    }

.paginationItem:hover{
    border-radius:100px;
    cursor:pointer;
}


.review_page-size-select-container {
    display: flex;
    align-items: end;
    gap: 8px;
    justify-content: end;
/*    position: absolute;*/
/*    right: 50px;*/
}

.review_page-size-select{
    white-space: nowrap;
}

.review_page-size-select-container select {
    padding: 12px;
    appearance: none; /* Removes default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 6'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 1 4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
    font-size: 16px;
    width: 70px;
    color: black;
}

.pagination-info {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin-top: 8px;
    font-weight: 300;
}

.pagination-info{
    
}


#review-page-data{
    opacity: 0;
}