/* public/css/pagination.css */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 30px 0;
    gap: 5px;
}

.pagination li {
    margin: 0;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    /* border: 2px solid #00a8a6; */
    color: #00a8a6;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 50%;
}

.pagination a:hover {
    background-color: #00a8a6;
    color: white;
}

/* Aktiv sahifa - dumaloq fon */
.pagination .active a {
    background-color: #00a8a6;
    color: white;
}

/* Disabled holat */
.pagination .disabled span {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: transparent;
}

/* Responsive dizayn */
@media (max-width: 480px) {
    .pagination a,
    .pagination span {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .pagination {
        gap: 3px;
        margin: 20px 0;
    }
}