.pagination {
    display: flex;
    gap: 10px;
    align-items: center;
    list-style: none;
    padding: 0;
    padding-bottom: 40px;
    justify-content: center;
    margin-top: 40px;
}

.pagination li {
    display: inline;
}

.pagination a {
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #141A2A;
    transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
    background-color: #141A2A;
    color: white;
}

.pagination .active {
    font-weight: bold;
    background-color: #141A2A;
    color: white;
    border: 1px solid #141A2A;
}

.pagination .dots {
    pointer-events: none;
    padding: 8px 12px;
    color: #999;
}
