/* Page Navigation */
.page-navigation {
    text-align: center;
    margin: 0px 0 20px;
    padding: 0 15px;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* padding: 12px 20px; */
    padding: 2px 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border: 2px solid #5a6fd8;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    cursor: pointer;
    min-width: 140px;
    justify-content: center;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #5a6fd8 0%, #6a5acd 100%);
    border-color: #4a5fc7;
}

.nav-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(102, 126, 234, 0.3);
}

.nav-emoji {
    font-size: 1.2em;
}

.nav-text {
    font-weight: 600;
}