.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 7vh;
    padding: 16px 0;
    background: inherit;
}

.pagination-container {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.results.visible + .pagination-container {
    display: flex;
}

.page-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Active dot styling */
.page-dot.active {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(0, 0, 0, 0.5);
}

/* Hover state */
.page-dot:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Dark mode support */
body.dark .page-dot {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

body.dark .page-dot.active {
    background-color: rgba(255, 255, 255, 0.5);
}

body.dark .page-dot:hover {
    background-color: rgba(255, 255, 255, 0.2);
}