.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    width: 420px;
}

.pagination__count-text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    opacity: 0.5;
    margin-left: auto;
}

.pagination__select-wrapper {
    position: relative;
}


.pagination__buttons {
    display: flex;
    align-items: center;
}

.pagination__buttons button {
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 10px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination__buttons button:hover {
    border-color: #C5C4CF;
}

.pagination__select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 180px;
    border: 1px solid #C5C4CF;
    border-radius: 10px;
}

.pg-selected-option {
    margin: 0;
    padding: 10px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.pg-options-wrapper {
    position: absolute;
    top: 110%;
    left: 0;
    display: none;
    flex-direction: column;
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
    width: 100%;
    z-index: 1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.pg-options-wrapper .pg-select__option {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #535260;
    margin: 0;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background-color: #fff;
    width: 100%;
}

.pg-options-wrapper .pg-select__option:hover {
    background-color: #F8F7FA;
}
