/* ============================================
   NAVIGATION BUTTONS
   ============================================ */

.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 32px 0 24px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    clear: both;
}

.btn-previous,
.btn-next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-previous {
    background: #f5f5f5;
    color: #333;
    border: 2px solid #e0e0e0;
}

.btn-previous:hover {
    background: #e0e0e0;
    border-color: #ccc;
    transform: translateX(-4px);
}

.btn-next {
    background: linear-gradient(135deg, #146AFF 0%, #1976d2 100%);
    color: white;
    margin-left: auto;
}

.btn-next:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    box-shadow: 0 4px 12px rgba(20, 106, 255, 0.3);
    transform: translateX(4px);
}

.btn-previous svg,
.btn-next svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}