/* ==========================================================================
   Custom Pagination Styles
   ========================================================================== */

.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #1a1a1a;
    margin-top: 2rem;
    font-family: 'Orbitron', sans-serif;
}

.custom-pagination .page-select-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-pagination .page-select {
    background-color: #0b0c10;
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 8px 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px 12px;
    cursor: pointer;
}

.custom-pagination .page-link {
    color: var(--bs-yellow);
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 0;
}

.custom-pagination .page-link:hover {
    text-decoration: underline;
    color: #fff;
}

.custom-pagination .page-separator {
    color: #555;
    font-size: 1rem;
    line-height: 1;
}
