.custom-pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0 0 0;
    padding-bottom: 5rem;
}

.pagination-container {
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pagination-item {
    margin: 0;
}

.pagination-item.active .pagination-link {
    background-color: var(--secondary-color);
    color: white;
    font-weight: bold;
}

.pagination-item.disabled .pagination-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 40px;
    padding: 0 12px;
    background-color: white;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    border-right: 1px solid #eee;
}

.pagination-link:hover:not(.disabled .pagination-link) {
    background-color: var(--primary-color);
    color: white;
}

.pagination-arrow {
    font-size: 12px;
}

/* Responsive per dispositivi mobili */
@media (max-width: 576px) {
    .pagination-link {
        height: 36px;
        min-width: 36px;
        padding: 0 8px;
        font-size: 14px;
    }

    /* Nascondi alcuni numeri su schermi molto piccoli */
    .pagination-list
        li:not(.active):not(:first-child):not(:last-child):not(
            :nth-child(2)
        ):not(:nth-last-child(2)) {
        display: none;
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 768px) {
    .pagination-link {
        height: 38px;
        min-width: 38px;
    }
}

/* Schermi grandi */
@media (min-width: 992px) {
    .pagination-link {
        height: 44px;
        min-width: 44px;
        padding: 0 15px;
    }
}
