/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

.pagi_container,
.pagi_button,
.pagi_links,
.pagi_link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagi_container {
    padding: 20px;
    border-radius: 8px;
    column-gap: 12px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.pagi_button {
    border: none;
}

.pagi_button i {
    pointer-events: none;
}

.pagi_button:disabled {
    color: #b3b3b3;
    pointer-events: none;
}

.pagi_button,
.pagi_link {
    height: 45px;
    width: 45px;
    font-size: 20px;
    color: #666666;
    background-color: #f2f2f2;
    border-radius: 6px;
    cursor: pointer;
}

.pagi_links {
    column-gap: 12px;
}

.pagi_link {
    font-weight: 500;
    text-decoration: none;
}

.pagi_button:hover,
.pagi_link:hover {
    color: #fff;
    background: #FD7E14;
}

.pagi_link.active {
    color: #fff;
    background: #FD7E14;
}