.change_page_section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Adjust spacing between elements */
    margin-top: 20px; /* Adjust for positioning */
}

.page-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.5s ease;
}
.page-btn:hover {
    scale: 1.5;
}

.page-btn i {
    color: #0ca3c9;
}

.page-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0ca3c9;
    color: white;
    font-size: 18px;
}

.page-indicator span {
    display: inline-block;
    font-weight: bold;
    /* border-bottom: 2px solid rgb(255, 255, 255);
    border-top: 2px solid rgb(255, 255, 255);
    padding-bottom: 1px;
    padding-top: 1px; */
}

