/* Navigation Styles for bazaznanja.html */
.page-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    gap: 20px;
    max-width: 1200px;
    width: 96%;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff3d4;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-button:hover {
    background-color: #00843D;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nav-button:active {
    background-color: #00843D;
    color: #ffffff;
}

.nav-button.prev::before {
    content: "⟵";
    font-size: 1.2em;
}

.nav-button.next::after {
    content: "⟶";
    font-size: 1.2em;
}

.nav-button.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .page-navigation {
        flex-direction: column;
    }
    
    .nav-button {
        width: 100%;
        justify-content: center;
    }
}
